diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-10-18 22:40:18 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-10-18 22:40:18 -0700 |
commit | 33dbd8a76698fefeb3a0c3f735da22c044b8a872 (patch) | |
tree | d210b30a2f7ff052efa46d3249ba230e7b929836 /src/arch/x86/isa/formats | |
parent | 70542c8e617b3b721b3cc5e7e52ca62b65e3073b (diff) | |
download | gem5-33dbd8a76698fefeb3a0c3f735da22c044b8a872.tar.xz |
X86: Make the "fault" microop predicated.
--HG--
extra : convert_revision : 48dae1f3c680636833c137fe6b95b37ae84e188c
Diffstat (limited to 'src/arch/x86/isa/formats')
-rw-r--r-- | src/arch/x86/isa/formats/string.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/formats/string.isa b/src/arch/x86/isa/formats/string.isa index b1d3c4bbe..cb3ebc496 100644 --- a/src/arch/x86/isa/formats/string.isa +++ b/src/arch/x86/isa/formats/string.isa @@ -103,7 +103,7 @@ def format StringInst(*opTypeSet) {{ %s } else if (LEGACY_REPNE) { // The repne prefix is illegal - return new MicroFault(machInst, "illprefix", new InvalidOpcode); + return new MicroFault(machInst, "illprefix", new InvalidOpcode, 0); } else { %s } |