File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -2066,10 +2066,9 @@ LogicalResult cir::ComplexRealOp::verify() {
2066
2066
}
2067
2067
2068
2068
OpFoldResult cir::ComplexRealOp::fold (FoldAdaptor adaptor) {
2069
- if (auto complexCreateOp = dyn_cast_or_null<cir::ComplexCreateOp>(
2070
- getOperand ().getDefiningOp ())) {
2069
+ if (auto complexCreateOp =
2070
+ dyn_cast_or_null<cir::ComplexCreateOp>( getOperand ().getDefiningOp ()))
2071
2071
return complexCreateOp.getOperand (0 );
2072
- }
2073
2072
2074
2073
auto complex =
2075
2074
mlir::cast_if_present<cir::ConstComplexAttr>(adaptor.getOperand ());
Original file line number Diff line number Diff line change 1
- // RUN: cir-opt %s -cir-canonicalize -o - -split-input-file | FileCheck %s
1
+ // RUN: cir-opt %s -cir-canonicalize -o - -split-input-file | FileCheck %s
2
2
3
3
!s32i = !cir.int<s, 32>
4
4
You can’t perform that action at this time.
0 commit comments