diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:03 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:03 -0500 |
commit | b02c7f1bcd4fab4097b9b4b99d08a8287ae25ca8 (patch) | |
tree | 9bbeb7c44dc6e59a030cea4d5c7e5c3c30a5e289 /src/arch/arm/SConscript | |
parent | 7b62e9ad7180bd6365c096040114a2f1dfc19fa8 (diff) | |
download | gem5-b02c7f1bcd4fab4097b9b4b99d08a8287ae25ca8.tar.xz |
ARM: Move the macro mem constructor out of the isa desc.
This code doesn't use the parser at all, and moving it out reduces the
conceptual complexity of that code.
Diffstat (limited to 'src/arch/arm/SConscript')
-rw-r--r-- | src/arch/arm/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/arm/SConscript b/src/arch/arm/SConscript index c1a08aa49..cb54612f0 100644 --- a/src/arch/arm/SConscript +++ b/src/arch/arm/SConscript @@ -49,6 +49,7 @@ if env['TARGET_ISA'] == 'arm': Dir('isa/formats') Source('faults.cc') Source('insts/branch.cc') + Source('insts/macromem.cc') Source('insts/mem.cc') Source('insts/pred_inst.cc') Source('insts/static_inst.cc') |