diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-28 16:21:24 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:19 -0800 |
commit | 0ec22e206f7b552897dd2c303c84c70b742d0208 (patch) | |
tree | 511adfa839e3a49ddfa27c5ad1afdaae37d9d169 /src/runtime.js | |
parent | 1dfc355a56d5da67bb6bcb9c821b46c62c47bb77 (diff) |
only use typed function tables in asm_js mode
Diffstat (limited to 'src/runtime.js')
-rw-r--r-- | src/runtime.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/runtime.js b/src/runtime.js index 8c1fbd65..814a91bb 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -311,10 +311,6 @@ var Runtime = { return ret; }, - getFunctionTable: function(sig) { // return value, param types e.g. "vid" void (int, double) - return Module['FUNCTION_TABLE_' + sig]; - }, - addFunction: function(func, sig) { assert(sig); var table = Runtime.getFunctionTable(sig); |