aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-10-13 22:24:06 -0700
committeralon@honor <none@none>2010-10-13 22:24:06 -0700
commit5efa5e467476859cdfb55a3a9dd22bf4584f670e (patch)
treeb08d44f39989df6ac1ffdba6ebbf38849fee2013 /src/jsifier.js
parentd276be7499faff9814dc3cad07c2685284645106 (diff)
aggressively nativize variables; stop doing optimizations that are no longer needed; fix some uncovered bugs; 49% speedup
Diffstat (limited to 'src/jsifier.js')
-rw-r--r--src/jsifier.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jsifier.js b/src/jsifier.js
index 38af855e..51e37d8a 100644
--- a/src/jsifier.js
+++ b/src/jsifier.js
@@ -457,7 +457,7 @@ function JSify(data) {
});
}
makeFuncLineZyme('store', function(item) {
- var value = finalizeLLVMParameter(item.value);
+ var value = indexizeFunctions(finalizeLLVMParameter(item.value));
if (pointingLevels(item.pointerType) == 1) {
value = parseNumerical(value, removePointing(item.pointerType));
}