summaryrefslogtreecommitdiff
path: root/src/compiler.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-04-03 15:54:28 -0400
committerAdrian Thurston <thurston@complang.org>2015-04-03 15:54:28 -0400
commit3173d2e67c276514be2c9ee61e508a36f7570545 (patch)
tree6015c68107a025fa3fc582c78e5275eb370719ef /src/compiler.h
parentfa5f9a998a4138abed01557eadb577d316e3482d (diff)
downloadcolm-3173d2e67c276514be2c9ee61e508a36f7570545.tar.gz
removed the contiguous computation
Now that we have a separate contiguos space for args we no longer need to precompute the contiguous size before a function call. Can just issue a vm_congiguous immediately before a call for the callling convention items and the local frame.
Diffstat (limited to 'src/compiler.h')
-rw-r--r--src/compiler.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/compiler.h b/src/compiler.h
index 178ed5a8..13eb6e7d 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -1011,10 +1011,6 @@ struct Compiler
int contiguousOffset;
int contiguousStretch;
- bool beginContiguous( CodeVect &code, int stretch );
- void endContiguous( CodeVect &code, bool resetContiguous );
- void clearContiguous( CodeVect &code, bool resetContiguous );
-
void declareReVars();
};