diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-05-15 11:34:18 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-05-15 11:34:18 -0700 |
commit | 8ed84f09e75083b19fa6b2ad2a3651b01af41fb7 (patch) | |
tree | 137067d532ecb0f84af204758f8017d4a64040b3 /src/jsifier.js | |
parent | ede562fea850fb0e3e9c9e84cc25603e7587c02b (diff) |
refactor code to generate empty function tables
Diffstat (limited to 'src/jsifier.js')
-rw-r--r-- | src/jsifier.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jsifier.js b/src/jsifier.js index 8270b443..3f52337f 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -1463,6 +1463,7 @@ function JSify(data, functionsOnly, givenFunctions) { if (!byPointerForced && !funcData.setjmpTable) { // normal asm function pointer call callIdent = '(' + callIdent + ')&{{{ FTM_' + sig + ' }}}'; // the function table mask is set in emscripten.py + Functions.neededTables[sig] = 1; } else { // This is a call through an invoke_*, either a forced one, or a setjmp-required one // note: no need to update argsTypes at this point |