aboutsummaryrefslogtreecommitdiff
path: root/src/runtime.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime.js')
-rw-r--r--src/runtime.js3
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 + ')';
}