aboutsummaryrefslogtreecommitdiff
path: root/mlir/test/Target/Cpp/control_flow.mlir
diff options
context:
space:
mode:
Diffstat (limited to 'mlir/test/Target/Cpp/control_flow.mlir')
-rw-r--r--mlir/test/Target/Cpp/control_flow.mlir4
1 files changed, 2 insertions, 2 deletions
diff --git a/mlir/test/Target/Cpp/control_flow.mlir b/mlir/test/Target/Cpp/control_flow.mlir
index 474fa95..436543f 100644
--- a/mlir/test/Target/Cpp/control_flow.mlir
+++ b/mlir/test/Target/Cpp/control_flow.mlir
@@ -8,12 +8,12 @@ func.func @simple(i64, i1) -> i64 {
^bb1:
cf.br ^bb3(%a: i64)
^bb2:
- %b = emitc.call "add"(%a, %a) : (i64, i64) -> i64
+ %b = emitc.call_opaque "add"(%a, %a) : (i64, i64) -> i64
cf.br ^bb3(%b: i64)
^bb3(%c: i64):
cf.br ^bb4(%c, %a : i64, i64)
^bb4(%d : i64, %e : i64):
- %0 = emitc.call "add"(%d, %e) : (i64, i64) -> i64
+ %0 = emitc.call_opaque "add"(%d, %e) : (i64, i64) -> i64
return %0 : i64
}
// CPP-DECLTOP: int64_t simple(int64_t [[A:[^ ]*]], bool [[COND:[^ ]*]]) {