[Mlir-commits] [mlir] [mlir][emitc] Fix `emitc.expression` example (PR #84060)
Kirill Chibisov
llvmlistbot at llvm.org
Wed Mar 6 00:32:33 PST 2024
================
@@ -409,9 +409,9 @@ def EmitC_ExpressionOp : EmitC_Op<"expression",
int32_t v7 = foo(v1 + v2) * (v3 + v4);
```
- The operations allowed within expression body are emitc.add, emitc.apply,
- emitc.call, emitc.cast, emitc.cmp, emitc.div, emitc.mul, emitc.rem and
- emitc.sub.
+ The operations allowed within expression body are `emitc.add`,
+ `emitc.apply`, `emitc.call`, `emitc.cast`, `emitc.cmp`, `emitc.div`,
----------------
kchibisov wrote:
Ah, hm, it doesn't have `call` in there, so I guess it should be send in a separate PR along with e.g. logical operations.
https://github.com/llvm/llvm-project/pull/84060
More information about the Mlir-commits
mailing list