summaryrefslogtreecommitdiff
path: root/src/mem/slicc/ast/ActionDeclAST.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/slicc/ast/ActionDeclAST.py')
-rw-r--r--src/mem/slicc/ast/ActionDeclAST.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/slicc/ast/ActionDeclAST.py b/src/mem/slicc/ast/ActionDeclAST.py
index 2a8fb0639..8015523ab 100644
--- a/src/mem/slicc/ast/ActionDeclAST.py
+++ b/src/mem/slicc/ast/ActionDeclAST.py
@@ -59,12 +59,12 @@ class ActionDeclAST(DeclAST):
if machine.TBEType != None:
var = Var(self.symtab, "tbe", self.location, machine.TBEType,
- "(*m_tbe_ptr)", self.pairs)
+ "m_tbe_ptr", self.pairs)
self.symtab.newSymbol(var)
if machine.EntryType != None:
var = Var(self.symtab, "cache_entry", self.location,
- machine.EntryType, "(*m_cache_entry_ptr)", self.pairs)
+ machine.EntryType, "m_cache_entry_ptr", self.pairs)
self.symtab.newSymbol(var)
# Do not allows returns in actions