diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-18 20:20:55 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-18 20:54:22 -0700 |
commit | c0074e01ac06a66faf3e9d91f1cecb4ff02c7ee9 (patch) | |
tree | 0b8e70862b0a352ed5d58008b472c657057c6ad6 /src/settings.js | |
parent | d9173c5dfb0c58a7d5be96f1e4615cefd77f6f43 (diff) |
setjmp support for asm.js
Diffstat (limited to 'src/settings.js')
-rw-r--r-- | src/settings.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/settings.js b/src/settings.js index 8f31c2d8..db24cca4 100644 --- a/src/settings.js +++ b/src/settings.js @@ -55,6 +55,7 @@ var ALLOW_MEMORY_GROWTH = 0; // If false, we abort with an error if we try to al // that case we must be careful about optimizations, in particular the // eliminator). Note that memory growth is only supported with typed // arrays. +var MAX_SETJMPS = 10; // size of setjmp table allocated in each function invocation (that has setjmp) // Code embetterments var MICRO_OPTS = 1; // Various micro-optimizations, like nativizing variables |