diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-09-24 17:03:18 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-09-24 17:03:18 -0700 |
commit | 7770239792d1cf3e7e7a1190185d6a7ca67fe227 (patch) | |
tree | dffa7793dcc82ce2259984cb7a7e3ecaa708114a /src | |
parent | 9f26aaa7d75ac1a63a60ebacbe6888e435f17709 (diff) | |
download | gem5-7770239792d1cf3e7e7a1190185d6a7ca67fe227.tar.xz |
SCons: Add a comment I forgot to add in earlier.
This comment was supposed to be added to an earlier change as part of review
feedback, but I accidentally left it out when I pushed. Add it in now.
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/SConscript b/src/arch/SConscript index 3eee7b93e..4f731880f 100644 --- a/src/arch/SConscript +++ b/src/arch/SConscript @@ -121,6 +121,7 @@ def isa_desc_action_func(target, source, env): sys.path[0:0] = [ ARCH_DIR.srcnode().abspath ] import isa_parser + # Skip over the ISA description itself and the parser to the CPU models. models = [ s.get_contents() for s in source[2:] ] cpu_models = [CpuModel.dict[cpu] for cpu in models] parser = isa_parser.ISAParser(target[0].dir.abspath, cpu_models) |