diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:01 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:01 -0500 |
commit | 93a371481697f3f68f8189da6a7b14934fa93723 (patch) | |
tree | fbaffc66e6e1fbceda487b3150e06f95b825e105 /src/arch/arm/isa/insts | |
parent | 04300e33d49e5697565eb39956849a18ad74ea45 (diff) | |
download | gem5-93a371481697f3f68f8189da6a7b14934fa93723.tar.xz |
ARM: Move the templates for predicated instructions into a separate file.
This allows the templates to all be available at the same time before any of
the formats, etc. This breaks an artificial circular dependence.
--HG--
rename : src/arch/arm/isa/formats/pred.isa => src/arch/arm/isa/templates/pred.isa
Diffstat (limited to 'src/arch/arm/isa/insts')
-rw-r--r-- | src/arch/arm/isa/insts/mem.isa | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/arch/arm/isa/insts/mem.isa b/src/arch/arm/isa/insts/mem.isa index a7aa0b2ed..1bd70e54b 100644 --- a/src/arch/arm/isa/insts/mem.isa +++ b/src/arch/arm/isa/insts/mem.isa @@ -52,8 +52,6 @@ let {{ else: eaCode += '0;' - predicateTest = 'testPredicate(CondCodes, condCode)' - iop = InstObjParams(name, Name, base, {'ea_code': eaCode, 'memacc_code': accCode, |