File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
mlir/include/mlir/Dialect/EmitC/IR Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -1271,15 +1271,14 @@ def EmitC_VerbatimOp : EmitC_Op<"verbatim"> {
12711271 #endif
12721272 ```
12731273
1274- <<<<<<< HEAD
12751274 If the `emitc.verbatim` op has operands, then the `value` is interpreted as
12761275 format string, where `{}` is a placeholder for an operand in their order.
12771276 For example, `emitc.verbatim "#pragma my src={} dst={}" %src, %dest : i32, i32`
12781277 would be emitted as `#pragma my src=a dst=b` if `%src` became `a` and
12791278 `%dest` became `b` in the C code.
12801279 `{{` in the format string is interpreted as a single `{` and doesn't introduce
12811280 a placeholder.
1282- =======
1281+
12831282 Example:
12841283
12851284 ```mlir
@@ -1291,7 +1290,6 @@ def EmitC_VerbatimOp : EmitC_Op<"verbatim"> {
12911290 typedef float f32;
12921291 #pragma my var=v1 property
12931292 ```
1294- >>>>>>> cabdac5e5703 ([mlir][emitc][NFC] Add an example to the description of the emitc.verbatim operation)
12951293 }];
12961294
12971295 let extraClassDeclaration = [{
You can’t perform that action at this time.
0 commit comments