diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2009-11-05 11:11:06 -0800 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2009-11-05 11:11:06 -0800 |
commit | 9098010e3fccf779786c7f0e1dfab9d522f72eb5 (patch) | |
tree | 688b989cf6d6d0fd081143835c3b5ba55b469c8d /src/mem/slicc/ast/EnumDeclAST.py | |
parent | 058ccfc7fe7be1b7b7124ecdd0d9d79fe4d6a86f (diff) | |
download | gem5-9098010e3fccf779786c7f0e1dfab9d522f72eb5.tar.xz |
slicc: tweak file enumeration for scons
Right now .cc and .hh files are handled separately, but then
they're just munged together at the end by scons, so it
doesn't buy us anything. Might as well munge from the start
since we'll eventually be adding generated Python files
to the list too.
Diffstat (limited to 'src/mem/slicc/ast/EnumDeclAST.py')
-rw-r--r-- | src/mem/slicc/ast/EnumDeclAST.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mem/slicc/ast/EnumDeclAST.py b/src/mem/slicc/ast/EnumDeclAST.py index c16fc8a75..a20f4b749 100644 --- a/src/mem/slicc/ast/EnumDeclAST.py +++ b/src/mem/slicc/ast/EnumDeclAST.py @@ -38,16 +38,16 @@ class EnumDeclAST(DeclAST): def __repr__(self): return "[EnumDecl: %s]" % (self.type_ast) - def files(self, hh, cc, parent=None): + def files(self, parent=None): if "external" in self: - return + return set() if parent: ident = "%s_%s" % (parent, self.type_ast.ident) else: ident = self.type_ast.ident - hh.add("%s.hh" % ident) - cc.add("%s.cc" % ident) + s = set(("%s.hh" % ident, "%s.cc" % ident)) + return s def generate(self): ident = str(self.type_ast) |