SourceProcessing

changeset 530:7a6c5b2640f5

typo in equivalence stmt parsing
author hcm@serenity
date Tue Dec 01 09:17:56 2009 -0600 (2009-12-01)
parents 0e2efba41eac
children 06b9b7f3d4dc
files PyFort/fortStmts.py
line diff
     1.1 --- a/PyFort/fortStmts.py	Mon Nov 30 02:12:46 2009 -0600
     1.2 +++ b/PyFort/fortStmts.py	Tue Dec 01 09:17:56 2009 -0600
     1.3 @@ -937,7 +937,7 @@
     1.4                      lit(')'))
     1.5          stmt = seq(lit(EquivalenceStmt.kw),cslist(nlist))
     1.6          ([equivalence,nlists],rm) = stmt(scan)
     1.7 -        return EquivalenceStmt(declList,lineNumber)
     1.8 +        return EquivalenceStmt(nlists,lineNumber)
     1.9  
    1.10      
    1.11      def __init__(self,nlists,lineNumber=0,label=False,lead='',internal=[]):