summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;