Skip to content

Commit 892586f

Browse files
committed
[mlir][emitc][NFC] Resolve the merge conflicts
1 parent 4e95f8c commit 892586f

File tree

1 file changed

+1
-3
lines changed
  • mlir/include/mlir/Dialect/EmitC/IR

1 file changed

+1
-3
lines changed

mlir/include/mlir/Dialect/EmitC/IR/EmitC.td

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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 = [{

0 commit comments

Comments
 (0)