summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/fuzz_relooper.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/fuzz_relooper.py b/scripts/fuzz_relooper.py
index bf8867571..45ead4cf2 100755
--- a/scripts/fuzz_relooper.py
+++ b/scripts/fuzz_relooper.py
@@ -131,8 +131,8 @@ int main() {
)
};
BinaryenExpressionRef debugger;
- if (1) debugger = BinaryenCallImport(module, "print", args, 1,
- BinaryenNone());
+ if (1) debugger = BinaryenCall(module, "print", args, 1,
+ BinaryenNone());
else debugger = BinaryenNop(module);
// return the decision. need to subtract 4 that we just added,
@@ -177,7 +177,7 @@ int main() {
BinaryenConst(module, BinaryenLiteralInt32(%d))
};
BinaryenExpressionRef list[] = {
- BinaryenCallImport(module, "print", args, 1, BinaryenNone()),
+ BinaryenCall(module, "print", args, 1, BinaryenNone()),
BinaryenSetLocal(module, 0, BinaryenCall(module, "check", NULL, 0,
BinaryenInt32()))
};