summaryrefslogtreecommitdiff
path: root/src/mem/slicc
diff options
context:
space:
mode:
authorDavid Hashe <david.hashe@amd.com>2015-07-20 09:15:18 -0500
committerDavid Hashe <david.hashe@amd.com>2015-07-20 09:15:18 -0500
commit3d8c8a85faaf63d96064693f4826f58ce88c8c9f (patch)
tree81dd42c98c69ca4a61be8899277d4cccf02b5c6a /src/mem/slicc
parent93fff6f636b94524fd8c4d1f9d0e01cfcd695c50 (diff)
downloadgem5-3d8c8a85faaf63d96064693f4826f58ce88c8c9f.tar.xz
slicc: fix missing inline function in LocalVariableAST
Diffstat (limited to 'src/mem/slicc')
-rw-r--r--src/mem/slicc/ast/LocalVariableAST.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mem/slicc/ast/LocalVariableAST.py b/src/mem/slicc/ast/LocalVariableAST.py
index 0b77323b7..5c6bfe80a 100644
--- a/src/mem/slicc/ast/LocalVariableAST.py
+++ b/src/mem/slicc/ast/LocalVariableAST.py
@@ -1,4 +1,5 @@
#
+# Copyright (c) 2013 Advanced Micro Devices, Inc.
# Copyright (c) 2011 Mark D. Hill and David A. Wood
# All rights reserved.
#
@@ -43,6 +44,14 @@ class LocalVariableAST(StatementAST):
def name(self):
return self.var_name
+ def inline(self, get_type=False):
+ code = self.slicc.codeFormatter(fix_newlines=False)
+ return_type = self.generate(code)
+ if get_type:
+ return return_type, code
+ else:
+ return code
+
def generate(self, code):
type = self.type_ast.type;
ident = "%s" % self.ident;