summaryrefslogtreecommitdiff
path: root/colm/compiler.cc
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2012-08-29 12:27:56 -0400
committerAdrian Thurston <thurston@complang.org>2012-08-29 12:27:56 -0400
commitab40d1b49d9a1631145ff604ad2a65eaa6345dfd (patch)
treeb3a9cf5fce0cc57d8f6d84a9ee91ce4de31edc96 /colm/compiler.cc
parent10978e1598a33811085cf3e51684948087d3c4db (diff)
downloadcolm-ab40d1b49d9a1631145ff604ad2a65eaa6345dfd.tar.gz
guard against nested contiguous stack blocks, they don't work
Diffstat (limited to 'colm/compiler.cc')
-rw-r--r--colm/compiler.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/colm/compiler.cc b/colm/compiler.cc
index 27114d8f..54e42a09 100644
--- a/colm/compiler.cc
+++ b/colm/compiler.cc
@@ -441,7 +441,8 @@ Compiler::Compiler( const String &fileName, const String &sectionName,
predValue(0),
nextMatchEndNum(0),
argvTypeRef(0),
- context(0)
+ context(0),
+ inContiguous(false)
{
}