Skip to content

Commit

Permalink
Fix buildIntConst param name
Browse files Browse the repository at this point in the history
  • Loading branch information
wpmed92 committed Oct 12, 2024
1 parent e3d11d9 commit b7fd4f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/CodeGen/MLIRCodeGen.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class MLIRCodeGen : public ASTVisitor {
mlir::Value currentBasePointer;
mlir::Value convertOp(ConstructorExpression* constructorExp, mlir::Value val);
mlir::Value buildBoolConst(bool val);
mlir::Value buildIntConst(uint32_t val, bool isUnsigned);
mlir::Value buildIntConst(uint32_t val, bool isSigned);
mlir::Value buildFloatConst(double val, bool isDouble);
mlir::Value buildVecConst(mlir::Value constant, mlir::Type type);
};
Expand Down

0 comments on commit b7fd4f1

Please sign in to comment.