From 3d8c8a85faaf63d96064693f4826f58ce88c8c9f Mon Sep 17 00:00:00 2001 From: David Hashe Date: Mon, 20 Jul 2015 09:15:18 -0500 Subject: slicc: fix missing inline function in LocalVariableAST --- src/mem/slicc/ast/LocalVariableAST.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/mem/slicc/ast') 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; -- cgit v1.2.3