diff options
author | Alan Modra <amodra@bigpond.net.au> | 2000-01-15 12:06:03 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2000-01-15 12:06:03 +0000 |
commit | ba3c7268fa984ce24a0bb63755fe4e6a01ca2f9a (patch) | |
tree | 77355ff94a83d38f68804ae67bc258788bfd9839 /include | |
parent | 0a922ca443b42f52e83f54295e24e78997c75f40 (diff) | |
download | binutils-redhat-ba3c7268fa984ce24a0bb63755fe4e6a01ca2f9a.tar.gz |
Cosmetic changes to tc-i386.[ch] + extend x86 gas testsuite jmp and
call tests + tweak intel mode far call and jmp.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/i386.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index fb573ccdba..2be7ead39c 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2000-01-15 Alan Modra <alan@spri.levels.unisa.edu.au> + + * i386.h: Qualify intel mode far call and jmp with x_Suf. + 1999-12-27 Alan Modra <alan@spri.levels.unisa.edu.au> * i386.h: Add JumpAbsolute qualifier to all non-intel mode diff --git a/include/opcode/i386.h b/include/opcode/i386.h index c5f6217d45..7bddbed4e6 100644 --- a/include/opcode/i386.h +++ b/include/opcode/i386.h @@ -316,7 +316,7 @@ static const template i386_optab[] = { /* Intel Syntax */ {"call", 2, 0x9a, X, wl_Suf|JumpInterSegment|DefaultSize, { Imm16, Imm16|Imm32, 0} }, /* Intel Syntax */ -{"call", 1, 0xff, 3, wl_Suf|Modrm|DefaultSize, { WordMem, 0, 0} }, +{"call", 1, 0xff, 3, x_Suf|Modrm|DefaultSize, { WordMem, 0, 0} }, {"lcall", 2, 0x9a, X, wl_Suf|JumpInterSegment|DefaultSize, { Imm16, Imm16|Imm32, 0} }, {"lcall", 1, 0xff, 3, wl_Suf|Modrm|DefaultSize, { WordMem|JumpAbsolute, 0, 0} }, @@ -326,7 +326,7 @@ static const template i386_optab[] = { /* Intel Syntax */ {"jmp", 2, 0xea, X, wl_Suf|JumpInterSegment, { Imm16, Imm16|Imm32, 0} }, /* Intel Syntax */ -{"jmp", 1, 0xff, 5, wl_Suf|Modrm, { WordMem, 0, 0} }, +{"jmp", 1, 0xff, 5, x_Suf|Modrm, { WordMem, 0, 0} }, {"ljmp", 2, 0xea, X, wl_Suf|JumpInterSegment, { Imm16, Imm16|Imm32, 0} }, {"ljmp", 1, 0xff, 5, wl_Suf|Modrm, { WordMem|JumpAbsolute, 0, 0} }, |