File tree Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -296,8 +296,6 @@ struct MissingFeatures {
296
296
// Future CIR operations
297
297
static bool awaitOp () { return false ; }
298
298
static bool callOp () { return false ; }
299
- static bool complexImagOp () { return false ; }
300
- static bool complexRealOp () { return false ; }
301
299
static bool ifOp () { return false ; }
302
300
static bool invokeOp () { return false ; }
303
301
static bool labelOp () { return false ; }
Original file line number Diff line number Diff line change @@ -1754,9 +1754,6 @@ LogicalResult cir::BinOp::verify() {
1754
1754
return emitError () << " The nsw/nuw flags and the saturated flag are "
1755
1755
" mutually exclusive" ;
1756
1756
1757
- assert (!cir::MissingFeatures::complexType ());
1758
- // TODO(cir): verify for complex binops
1759
-
1760
1757
return mlir::success ();
1761
1758
}
1762
1759
Original file line number Diff line number Diff line change @@ -134,8 +134,6 @@ void CIRCanonicalizePass::runOnOperation() {
134
134
getOperation ()->walk ([&](Operation *op) {
135
135
assert (!cir::MissingFeatures::switchOp ());
136
136
assert (!cir::MissingFeatures::tryOp ());
137
- assert (!cir::MissingFeatures::complexRealOp ());
138
- assert (!cir::MissingFeatures::complexImagOp ());
139
137
assert (!cir::MissingFeatures::callOp ());
140
138
141
139
// Many operations are here to perform a manual `fold` in
You can’t perform that action at this time.
0 commit comments