From d10fac27bc940d2cdd65c40ca6e6db80371b2d3b Mon Sep 17 00:00:00 2001 From: Tony Gutierrez Date: Fri, 13 Nov 2015 17:30:58 -0500 Subject: slicc: fixes for the Address to Addr changeset (11025) misc changes now that Address has become Addr including int to address util function --- src/mem/slicc/symbols/Transition.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mem/slicc') diff --git a/src/mem/slicc/symbols/Transition.py b/src/mem/slicc/symbols/Transition.py index 856d3f4b0..8f88352c8 100644 --- a/src/mem/slicc/symbols/Transition.py +++ b/src/mem/slicc/symbols/Transition.py @@ -40,7 +40,7 @@ class Transition(Symbol): # check to make sure there is a getNextState function declared found = False for func in machine.functions: - if func.c_ident == 'getNextState_Address': + if func.c_ident == 'getNextState_Addr': found = True break if found == False: -- cgit v1.2.3