diff options
Diffstat (limited to 'src/runtime.js')
-rw-r--r-- | src/runtime.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime.js b/src/runtime.js index e0eb7404..637632f8 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -59,7 +59,7 @@ var RuntimeGenerator = { var ret = ''; if (USE_TYPED_ARRAYS) ret += 'LAST_STATICTOP = STATICTOP;' ret += RuntimeGenerator.alloc(size, 'STATIC', INIT_HEAP); - if (USE_TYPED_ARRAYS) ret += 'if (STATICTOP >= TOTAL_MEMORY) enlargeMemory();' + if (USE_TYPED_ARRAYS) ret += '; if (STATICTOP >= TOTAL_MEMORY) enlargeMemory();' return ret; }, |