Skip to content

Commit

Permalink
clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
drom committed Jun 22, 2020
1 parent 90d0a09 commit cc19326
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Dialect/FIRRTL/LowerToRTL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ static LogicalResult lower(firrtl::CatPrimOp op, ArrayRef<Value> operands,
auto resultLoc = op.getLoc();
Type resultType = rewriter.getIntegerType(lhsWidth + rhsWidth);

rewriter.replaceOpWithNewOp<rtl::ConcatOp>(op, resultType, ArrayRef<Value>(args));
rewriter.replaceOpWithNewOp<rtl::ConcatOp>(op, resultType,
ArrayRef<Value>(args));
return success();
}

Expand Down

0 comments on commit cc19326

Please sign in to comment.