diff options
author | Nathan Binkert <nate@binkert.org> | 2009-11-05 17:21:26 -0800 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-11-05 17:21:26 -0800 |
commit | 8a3fbbd8d9ad3938b5226408396ea50c2dd0b0f8 (patch) | |
tree | e191c174675531d478f69423d2a66ba8bcba44a9 /src/arch/x86/isa/decoder | |
parent | 52ccfde2cdd4558e81e8eaf923c6952b3530ef0b (diff) | |
download | gem5-8a3fbbd8d9ad3938b5226408396ea50c2dd0b0f8.tar.xz |
compile: compile on 32 bit hardware
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r-- | src/arch/x86/isa/decoder/one_byte_opcodes.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/decoder/one_byte_opcodes.isa b/src/arch/x86/isa/decoder/one_byte_opcodes.isa index d6cfdc593..0225657c4 100644 --- a/src/arch/x86/isa/decoder/one_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/one_byte_opcodes.isa @@ -419,7 +419,7 @@ // extend it, and there's no easy way to specify only checking // the first byte. 0x5: decode IMMEDIATE { - 0xffffffffffffff80: + -0x80: SyscallInst::int80('xc->syscall(Rax)', IsSyscall); default: int_Ib(); } |