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() {
20662066}
20672067
20682068OpFoldResult 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 ()))
20712071 return complexCreateOp.getOperand (0 );
2072- }
20732072
20742073 auto complex =
20752074 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
22
33!s32i = !cir.int<s, 32>
44
You can’t perform that action at this time.
0 commit comments