diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-12 13:00:09 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-12 13:00:09 -0700 |
commit | c3ff344fc3e4a87232863a3864e7f10e96a32b10 (patch) | |
tree | 8d3f485f860e5f46c1c9eafcfa5ef58166d0b702 /src/compiler.js | |
parent | 174c6def2ce5290c62513d411ead97db14ef06ee (diff) |
unique ids for aborts for dead functions
Diffstat (limited to 'src/compiler.js')
-rw-r--r-- | src/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.js b/src/compiler.js index f461bcf7..bb72c7dd 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -168,7 +168,7 @@ if (SAFE_HEAP >= 2) { EXPORTED_FUNCTIONS = set(EXPORTED_FUNCTIONS); EXPORTED_GLOBALS = set(EXPORTED_GLOBALS); EXCEPTION_CATCHING_WHITELIST = set(EXCEPTION_CATCHING_WHITELIST); -DEAD_FUNCTIONS = set(DEAD_FUNCTIONS); +DEAD_FUNCTIONS = numberedSet(DEAD_FUNCTIONS); RUNTIME_DEBUG = LIBRARY_DEBUG || GL_DEBUG; |