@@ -19,7 +19,7 @@ class LLVM_UnaryIntrOpBase<string func, Type element,
1919 !listconcat([Pure, SameOperandsAndResultType], traits),
2020 requiresFastmath> {
2121 dag commonArgs = (ins LLVM_ScalarOrVectorOf<element>:$in);
22- let assemblyFormat = "`(` operands `)` custom<LLVMOpAttrs>( attr-dict) `:` "
22+ let assemblyFormat = "`(` operands `)` attr-dict `:` "
2323 "functional-type(operands, results)";
2424}
2525
@@ -42,7 +42,7 @@ class LLVM_BinarySameArgsIntrOpBase<string func, Type element,
4242 requiresFastmath> {
4343 dag commonArgs = (ins LLVM_ScalarOrVectorOf<element>:$a,
4444 LLVM_ScalarOrVectorOf<element>:$b);
45- let assemblyFormat = "`(` operands `)` custom<LLVMOpAttrs>( attr-dict) `:` "
45+ let assemblyFormat = "`(` operands `)` attr-dict `:` "
4646 "functional-type(operands, results)";
4747}
4848
@@ -67,7 +67,7 @@ class LLVM_TernarySameArgsIntrOpBase<string func, Type element,
6767 dag commonArgs = (ins LLVM_ScalarOrVectorOf<element>:$a,
6868 LLVM_ScalarOrVectorOf<element>:$b,
6969 LLVM_ScalarOrVectorOf<element>:$c);
70- let assemblyFormat = "`(` operands `)` custom<LLVMOpAttrs>( attr-dict) `:` "
70+ let assemblyFormat = "`(` operands `)` attr-dict `:` "
7171 "functional-type(operands, results)";
7272}
7373
@@ -137,15 +137,15 @@ def LLVM_PowIOp : LLVM_OneResultIntrOp<"powi", [], [0,1],
137137 (ins LLVM_ScalarOrVectorOf<LLVM_AnyFloat>:$val,
138138 AnySignlessInteger:$power,
139139 DefaultValuedAttr<LLVM_FastmathFlagsAttr, "{}">:$fastmathFlags);
140- let assemblyFormat = "`(` operands `)` custom<LLVMOpAttrs>( attr-dict) `:` "
140+ let assemblyFormat = "`(` operands `)` attr-dict `:` "
141141 "functional-type(operands, results)";
142142}
143143def LLVM_RintOp : LLVM_UnaryIntrOpF<"rint">;
144144def LLVM_NearbyintOp : LLVM_UnaryIntrOpF<"nearbyint">;
145145class LLVM_IntRoundIntrOpBase<string func> :
146146 LLVM_OneResultIntrOp<func, [0], [0], [Pure]> {
147147 let arguments = (ins LLVM_AnyFloat:$val);
148- let assemblyFormat = "`(` operands `)` custom<LLVMOpAttrs>( attr-dict) `:` "
148+ let assemblyFormat = "`(` operands `)` attr-dict `:` "
149149 "functional-type(operands, results)";
150150}
151151def LLVM_LroundOp : LLVM_IntRoundIntrOpBase<"lround">;
@@ -750,7 +750,7 @@ class LLVM_VecReductionF<string mnem>
750750 ins DefaultValuedAttr<LLVM_FastmathFlagsAttr, "{}">:$fastmathFlags);
751751 let arguments = !con(commonArgs, fmfArg);
752752
753- let assemblyFormat = "`(` operands `)` custom<LLVMOpAttrs>( attr-dict) `:` "
753+ let assemblyFormat = "`(` operands `)` attr-dict `:` "
754754 "functional-type(operands, results)";
755755}
756756
0 commit comments