summaryrefslogtreecommitdiff
path: root/colm/parsetree.cc
diff options
context:
space:
mode:
Diffstat (limited to 'colm/parsetree.cc')
-rw-r--r--colm/parsetree.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/colm/parsetree.cc b/colm/parsetree.cc
index aca5b179..f613ff3b 100644
--- a/colm/parsetree.cc
+++ b/colm/parsetree.cc
@@ -206,10 +206,8 @@ FsmGraph *VarDef::walk( ParseData *pd )
/* If the name of the variable is referenced then add the entry point to
* the graph. */
- if ( pd->curNameInst->numRefs > 0 ) {
- std::cerr << "entry: " << pd->curNameInst->name << " " << pd->curNameInst->id << endl;
+ if ( pd->curNameInst->numRefs > 0 )
rtnVal->setEntry( pd->curNameInst->id, rtnVal->startState );
- }
/* Pop the name scope. */
pd->popNameScope( nameFrame );