From f7fc8052ffaa6ece619a2c5c98c7025ca45acd5f Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Fri, 30 Oct 2015 12:52:14 -0700 Subject: handle minified function tables --- test/unit.asm.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/unit.asm.js') diff --git a/test/unit.asm.js b/test/unit.asm.js index 922923ea3..f737a3ddc 100644 --- a/test/unit.asm.js +++ b/test/unit.asm.js @@ -14,6 +14,14 @@ function () { temp = t + u + (-u) + (-t); } + function z() { + } + function w() { + } + + var FUNCTION_TABLE_a = [ z, big_negative, z, z ]; + var FUNCTION_TABLE_b = [ w, w, importedDoubles, w ]; + return { big_negative: big_negative }; } -- cgit v1.2.3