diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-20 07:25:24 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-20 07:25:24 -0800 |
commit | 62d5c159873ad08a4f3ec35074b2cdc7a3c46455 (patch) | |
tree | 2b04bbb16edc148cc77d98f76c3f002c59b876d4 /src/runtime.js | |
parent | d95f029c7cc148a10f52a6bd1026b78f9935b947 (diff) | |
parent | 2f3cb58579bbca6645b144de339b73c19f37abed (diff) |
Merge branch 'incoming'
Diffstat (limited to 'src/runtime.js')
-rw-r--r-- | src/runtime.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/runtime.js b/src/runtime.js index e1a6db39..39f522a7 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -9,9 +9,6 @@ var RuntimeGenerator = { alloc: function(size, type, init) { var ret = type + 'TOP'; - if (ASSERTIONS) { - ret += '; assert(' + size + ' != 0, "Trying to allocate 0")'; - } if (init) { ret += '; _memset(' + type + 'TOP, 0, ' + size + ')'; } |