SCons: Add a comment I forgot to add in earlier.
authorGabe Black <gblack@eecs.umich.edu>
Sun, 25 Sep 2011 00:03:18 +0000 (17:03 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Sun, 25 Sep 2011 00:03:18 +0000 (17:03 -0700)
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.

src/arch/SConscript

index 3eee7b93ec28fdfd0d5491da070659265caf8cda..4f731880fbf9e2f9ec8f6854695a97111cbee055 100644 (file)
@@ -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)