ruby: fix bug introduced to revision 8523754f8885
authorNilay Vaish <nilay@cs.wisc.edu>
Thu, 9 Jan 2014 16:45:50 +0000 (10:45 -0600)
committerNilay Vaish <nilay@cs.wisc.edu>
Thu, 9 Jan 2014 16:45:50 +0000 (10:45 -0600)
src/mem/slicc/symbols/StateMachine.py

index 1106dcadc386df2459c66281e6327b8f91fde219..89bb5dc0a5b364b6a58cf948a5595a134ad58a37 100644 (file)
@@ -298,7 +298,7 @@ TransitionResult doTransition(${ident}_Event event,
 ''')
 
         code('''
-                              const Address& addr);
+                              const Address addr);
 
 TransitionResult doTransitionWorker(${ident}_Event event,
                                     ${ident}_State state,
@@ -1158,7 +1158,7 @@ ${ident}_Controller::doTransition(${ident}_Event event,
                                   ${{self.TBEType.c_ident}}* m_tbe_ptr,
 ''')
         code('''
-                                  const Address &addr)
+                                  const Address addr)
 {
 ''')
         if self.TBEType != None and self.EntryType != None: