We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9875e6 commit b06caa7Copy full SHA for b06caa7
mlir/include/mlir/Dialect/LLVMIR/LLVMOps.td
@@ -880,6 +880,12 @@ def LLVM_IntrCallOp : LLVM_Op<"intrcall"> {
880
// TODO: Implement verifier (and custom asm format?)
881
}
882
883
+def LLVM_SetImmutableOp : LLVM_Op<"setimmutable"> {
884
+ let summary = "Sets immutable in the runtime object in the EVM target";
885
+ let arguments = (ins I<256>:$addr, StrAttr:$name, I<256>:$val);
886
+ let assemblyFormat = "$addr `,` $name `,` $val attr-dict";
887
+}
888
+
889
//===----------------------------------------------------------------------===//
890
// ExtractElementOp
891
0 commit comments