File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
clang/include/clang/CIR/Dialect/IR Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3821,11 +3821,11 @@ def DeleteArrayOp : CIR_Op<"delete.array">,
3821
3821
//===----------------------------------------------------------------------===//
3822
3822
3823
3823
def CIR_SideEffect : CIR_I32EnumAttr<
3824
- "SideEffect", "allowed side effects of a function",[
3825
- I32EnumAttrCase<"All", 1 , "all">,
3826
- I32EnumAttrCase<"Pure", 2 , "pure">,
3827
- I32EnumAttrCase<"Const", 3 , "const">
3828
- ]> {
3824
+ "SideEffect", "allowed side effects of a function", [
3825
+ I32EnumAttrCase<"All", 0 , "all">,
3826
+ I32EnumAttrCase<"Pure", 1 , "pure">,
3827
+ I32EnumAttrCase<"Const", 2 , "const">
3828
+ ]> {
3829
3829
let description = [{
3830
3830
The side effect attribute specifies the possible side effects of the callee
3831
3831
of a call operation. This is an enumeration attribute and all possible
You can’t perform that action at this time.
0 commit comments