From: Giacomo Gabrielli Date: Tue, 23 Oct 2018 12:34:05 +0000 (+0100) Subject: arch: Add include guards to auto-gen. decode header X-Git-Tag: v19.0.0.0~793 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e12da9b084c67c5f66359273ac3a9ec427953108;p=gem5.git arch: Add include guards to auto-gen. decode header Change-Id: I03bfc9035b82bc1a42e799cf645d43cb5dafb4cb Signed-off-by: Giacomo Gabrielli Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18911 Tested-by: kokoro Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg --- diff --git a/src/arch/isa_parser.py b/src/arch/isa_parser.py index 48bc23fa3..7f09b1665 100755 --- a/src/arch/isa_parser.py +++ b/src/arch/isa_parser.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014, 2016, 2019 ARM Limited +# Copyright (c) 2014, 2016, 2018-2019 ARM Limited # All rights reserved # # The license below extends only to copyright in the software and shall @@ -1652,6 +1652,9 @@ class ISAParser(Grammar): # decoder header - everything depends on this file = 'decoder.hh' with self.open(file) as f: + f.write('#ifndef __ARCH_%(isa)s_GENERATED_DECODER_HH__\n' + '#define __ARCH_%(isa)s_GENERATED_DECODER_HH__\n\n' % + {'isa': self.isa_name.upper()}) fn = 'decoder-g.hh.inc' assert(fn in self.files) f.write('#include "%s"\n' % fn) @@ -1660,6 +1663,8 @@ class ISAParser(Grammar): assert(fn in self.files) f.write('namespace %s {\n#include "%s"\n}\n' % (self.namespace, fn)) + f.write('\n#endif // __ARCH_%s_GENERATED_DECODER_HH__\n' % + self.isa_name.upper()) # decoder method - cannot be split file = 'decoder.cc'