From: David Hashe Date: Mon, 20 Jul 2015 14:15:18 +0000 (-0500) Subject: slicc: fix missing inline function in LocalVariableAST X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3d8c8a85faaf63d96064693f4826f58ce88c8c9f;p=gem5.git slicc: fix missing inline function in LocalVariableAST --- 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;