[Mlir-commits] [mlir] [mlir][emitc] Fix `emitc.expression` example (PR #84060)

Marius Brehler llvmlistbot at llvm.org
Wed Mar 6 00:24:58 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`,
----------------
marbre wrote:

```suggestion
    `emitc.apply`, `emitc.call_opaque`, `emitc.cast`, `emitc.cmp`, `emitc.div`,
```

https://github.com/llvm/llvm-project/pull/84060


More information about the Mlir-commits mailing list