From ab40d1b49d9a1631145ff604ad2a65eaa6345dfd Mon Sep 17 00:00:00 2001 From: Adrian Thurston Date: Wed, 29 Aug 2012 12:27:56 -0400 Subject: guard against nested contiguous stack blocks, they don't work --- colm/compiler.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'colm/compiler.cc') 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 §ionName, predValue(0), nextMatchEndNum(0), argvTypeRef(0), - context(0) + context(0), + inContiguous(false) { } -- cgit v1.2.1