diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-09-14 14:44:56 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-09-14 14:57:36 -0700 |
commit | 147bc5e8b13ee6659b6a259a29400c53c537fb1c (patch) | |
tree | 50df90c9b6165377c68a05afcccdfaf5e25f3252 /src/compiler.js | |
parent | e9cd8e2b1da682597b5ae84764f4149e4654b6d6 (diff) |
dynamically determine relooper heap size using RELOOPER_BUFFER_SIZE1.5.9
Diffstat (limited to 'src/compiler.js')
-rw-r--r-- | src/compiler.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler.js b/src/compiler.js index 0baec95e..f2b0dcbd 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -213,6 +213,7 @@ load('intertyper.js'); load('analyzer.js'); load('jsifier.js'); if (RELOOP) { + RelooperModule = { TOTAL_MEMORY: ceilPowerOfTwo(2*RELOOPER_BUFFER_SIZE) }; load(RELOOPER); assert(typeof Relooper != 'undefined'); } |