Skip to content

Commit

Permalink
[Verif] disambiguate ctor (#8076)
Browse files Browse the repository at this point in the history
  • Loading branch information
makslevental authored Jan 13, 2025
1 parent c3c0b08 commit cdd3814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Conversion/VerifToSV/VerifToSV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ struct PrintOpConversionPattern : public OpConversionPattern<PrintOp> {
ConversionPatternRewriter &rewriter) const override {

// Printf's will be emitted to stdout (32'h8000_0001 in IEEE Std 1800-2012).
Value fdStdout = rewriter.create<hw::ConstantOp>(
op.getLoc(), APInt(32, 0x80000001, false));
Value fdStdout =
rewriter.create<hw::ConstantOp>(op.getLoc(), APInt(32, 0x80000001));

auto fstrOp =
dyn_cast_or_null<FormatVerilogStringOp>(op.getString().getDefiningOp());
Expand Down

0 comments on commit cdd3814

Please sign in to comment.