aboutsummaryrefslogtreecommitdiff
path: root/src/parseTools.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/parseTools.js')
-rw-r--r--src/parseTools.js8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/parseTools.js b/src/parseTools.js
index 350f36b7..78ff934e 100644
--- a/src/parseTools.js
+++ b/src/parseTools.js
@@ -368,13 +368,7 @@ function makeGlobalDef(ident) {
}
function makeGlobalUse(ident) {
- if (!NAMED_GLOBALS && isIndexableGlobal(ident)) {
- if (!(ident in Variables.indexedGlobals)) {
- Variables.indexedGlobals[ident] = Variables.nextIndexedOffset;
- Variables.nextIndexedOffset += Runtime.alignMemory(calcAllocatedSize(Variables.globals[ident].type));
- }
- return getFastValue('GLOBAL_BASE', '+', Variables.indexedGlobals[ident]);
- }
+ if (!NAMED_GLOBALS && isIndexableGlobal(ident)) return getFastValue('GLOBAL_BASE', '+', Variables.indexedGlobals[ident]);
return ident; // TODO: add option for namespacing or offsetting to allow reducing the number of globals
}