diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-07-17 00:29:42 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-07-17 00:29:42 -0700 |
commit | df378285f8e2aaf8e1a1bd54f862ed7c7a073e28 (patch) | |
tree | a1b329e2b480c008e539ab3d432a151c3ab5a514 /src/arch/x86/insts | |
parent | e557b4beb570c2019d01da6cb1036dad5853cb60 (diff) | |
download | gem5-df378285f8e2aaf8e1a1bd54f862ed7c7a073e28.tar.xz |
X86: Shift some register flattening work into the decoder.
Diffstat (limited to 'src/arch/x86/insts')
-rw-r--r-- | src/arch/x86/insts/static_inst.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/arch/x86/insts/static_inst.cc b/src/arch/x86/insts/static_inst.cc index f4ed44603..0820a47d4 100644 --- a/src/arch/x86/insts/static_inst.cc +++ b/src/arch/x86/insts/static_inst.cc @@ -153,10 +153,7 @@ namespace X86ISA reg &= ~(1 << 6); if(fold) - { suffix = "h"; - reg -= 4; - } else if(reg < 8 && size == 1) suffix = "l"; |