summaryrefslogtreecommitdiff
path: root/test/wasm2js/br_table_to_loop.2asm.js.opt
diff options
context:
space:
mode:
Diffstat (limited to 'test/wasm2js/br_table_to_loop.2asm.js.opt')
-rw-r--r--test/wasm2js/br_table_to_loop.2asm.js.opt8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/wasm2js/br_table_to_loop.2asm.js.opt b/test/wasm2js/br_table_to_loop.2asm.js.opt
index 4c9f97311..7215e2676 100644
--- a/test/wasm2js/br_table_to_loop.2asm.js.opt
+++ b/test/wasm2js/br_table_to_loop.2asm.js.opt
@@ -10,17 +10,17 @@ function asmFunc(imports) {
var Math_ceil = Math.ceil;
var Math_trunc = Math.trunc;
var Math_sqrt = Math.sqrt;
- function $0() {
+ function exp1() {
while (1) continue;
}
- function $1() {
+ function exp2() {
}
return {
- "exp1": $0,
- "exp2": $1
+ "exp1": exp1,
+ "exp2": exp2
};
}