aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compiler.js1
-rw-r--r--src/settings.js2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler.js b/src/compiler.js
index 6f514f89..e869f5ab 100644
--- a/src/compiler.js
+++ b/src/compiler.js
@@ -9,7 +9,6 @@ if (!this['read']) {
}
load('settings.js');
-if (LABEL_DEBUG && RELOOP) throw "Cannot debug labels if they have been relooped!";
load('utility.js');
load('enzymatic.js');
diff --git a/src/settings.js b/src/settings.js
index 302f04b2..2133479c 100644
--- a/src/settings.js
+++ b/src/settings.js
@@ -1,6 +1,6 @@
// Code embetterments
OPTIMIZE = 1; // Optimize llvm operations into js commands
-RELOOP = 1; // Recreate js native loops from llvm data
+RELOOP = 0; // Recreate js native loops from llvm data XXX - disabled pending optimizing rewrite
// Generated code debugging options
SAFE_HEAP = 0; // Check each write to the heap against a list of blocked addresses