diff options
Diffstat (limited to 'test/unit.asm.js')
-rw-r--r-- | test/unit.asm.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/unit.asm.js b/test/unit.asm.js index 0a664ca3f..02e607208 100644 --- a/test/unit.asm.js +++ b/test/unit.asm.js @@ -109,6 +109,7 @@ function () { function neg() { var x = Math_fround(0); x = -x; + FUNCTION_TABLE_c[1 & 7](x); } function z() { @@ -118,6 +119,7 @@ function () { var FUNCTION_TABLE_a = [ z, big_negative, z, z ]; var FUNCTION_TABLE_b = [ w, w, importedDoubles, w ]; + var FUNCTION_TABLE_c = [ z, neg ]; return { big_negative: big_negative }; } |