Skip to content

Commit 8d93032

Browse files
committed
Fix CIR format in description
1 parent dfa75c6 commit 8d93032

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2366,7 +2366,7 @@ def ComplexCreateOp : CIR_Op<"complex.create", [Pure, SameTypeOperands]> {
23662366
```mlir
23672367
%0 = cir.const #cir.fp<1.000000e+00> : !cir.double
23682368
%1 = cir.const #cir.fp<2.000000e+00> : !cir.double
2369-
%2 = cir.complex.create %0, %1 : !cir.complex<!cir.double>
2369+
%2 = cir.complex.create %0, %1 : !cir.double -> !cir.complex<!cir.double>
23702370
```
23712371
}];
23722372

0 commit comments

Comments
 (0)