Skip to content

Commit f8afefa

Browse files
authored
[CIR] Remove implicit options from tablegen files (#138860)
This mirrors incubator changes from llvm/clangir#1602
1 parent 3212555 commit f8afefa

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

clang/include/clang/CIR/Dialect/IR/CIROps.td

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,6 @@ def AllocaOp : CIR_Op<"alloca", [
384384
`]`
385385
($annotations^)? attr-dict
386386
}];
387-
388-
let hasVerifier = 0;
389387
}
390388

391389
//===----------------------------------------------------------------------===//
@@ -1514,9 +1512,6 @@ def TernaryOp : CIR_Op<"ternary",
15141512
>
15151513
];
15161514

1517-
// All constraints already verified elsewhere.
1518-
let hasVerifier = 0;
1519-
15201515
let assemblyFormat = [{
15211516
`(` $cond `,`
15221517
`true` $trueRegion `,`
@@ -1654,9 +1649,6 @@ def GetGlobalOp : CIR_Op<"get_global",
16541649
let assemblyFormat = [{
16551650
$name `:` qualified(type($addr)) attr-dict
16561651
}];
1657-
1658-
// `GetGlobalOp` is fully verified by its traits.
1659-
let hasVerifier = 0;
16601652
}
16611653

16621654
//===----------------------------------------------------------------------===//
@@ -1839,7 +1831,6 @@ class CIR_CallOpBase<string mnemonic, list<Trait> extra_traits = []>
18391831

18401832
let hasCustomAssemblyFormat = 1;
18411833
let skipDefaultBuilders = 1;
1842-
let hasVerifier = 0;
18431834

18441835
// TODO(cir): for now cir.call is just a tiny shell of what it will become.
18451836
// More attributes, arguments, and properties will be added in the future as

0 commit comments

Comments
 (0)