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/templates/templates.isa | |
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/templates/templates.isa')
-rw-r--r-- | src/arch/arm/isa/templates/templates.isa | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/arm/isa/templates/templates.isa b/src/arch/arm/isa/templates/templates.isa index 65175d3cf..f10e8a07b 100644 --- a/src/arch/arm/isa/templates/templates.isa +++ b/src/arch/arm/isa/templates/templates.isa @@ -37,5 +37,8 @@ // // Authors: Gabe Black +//Templates for predicated instructions +##include "pred.isa" + //Templates for memory instructions ##include "mem.isa" |