summaryrefslogtreecommitdiff
path: root/colm/pdarun.c
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2013-02-09 13:44:24 -0500
committerAdrian Thurston <thurston@complang.org>2013-02-09 13:44:24 -0500
commit968a0f7831ed89030f8eabf842c7bc6270f7d81f (patch)
treeb8971cc8b24a2d14e0d97b3fec72a29cde20f67e /colm/pdarun.c
parent0e22038b0cd1230e88888547fe862e26b6ce7945 (diff)
downloadcolm-968a0f7831ed89030f8eabf842c7bc6270f7d81f.tar.gz
removed the FsmRun arg from the parseLoop call
Diffstat (limited to 'colm/pdarun.c')
-rw-r--r--colm/pdarun.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/colm/pdarun.c b/colm/pdarun.c
index 0e48efc0..cff8854b 100644
--- a/colm/pdarun.c
+++ b/colm/pdarun.c
@@ -1108,8 +1108,9 @@ long scanToken( Program *prg, PdaRun *pdaRun, FsmRun *fsmRun, StreamImpl *is )
*/
long parseLoop( Program *prg, Tree **sp, PdaRun *pdaRun,
- FsmRun *fsmRun, StreamImpl *is, long entry )
+ StreamImpl *is, long entry )
{
+ FsmRun *fsmRun = pdaRun->fsmRun;
LangElInfo *lelInfo = prg->rtd->lelInfo;
switch ( entry ) {