summaryrefslogtreecommitdiff
path: root/src/mem/slicc
diff options
context:
space:
mode:
authorTony Gutierrez <anthony.gutierrez@amd.com>2015-11-13 17:30:58 -0500
committerTony Gutierrez <anthony.gutierrez@amd.com>2015-11-13 17:30:58 -0500
commitd10fac27bc940d2cdd65c40ca6e6db80371b2d3b (patch)
tree2a407e51794760a234670407c2b9b191c0dcf4de /src/mem/slicc
parent5143d480f381b6f27316646f8129bc452c11c9f8 (diff)
downloadgem5-d10fac27bc940d2cdd65c40ca6e6db80371b2d3b.tar.xz
slicc: fixes for the Address to Addr changeset (11025)
misc changes now that Address has become Addr including int to address util function
Diffstat (limited to 'src/mem/slicc')
-rw-r--r--src/mem/slicc/symbols/Transition.py2
1 files changed, 1 insertions, 1 deletions
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: