diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-06-25 21:20:20 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-06-25 21:20:20 +0000 |
commit | 5f15756d1177d72d8d32465bed939a1ace016592 (patch) | |
tree | 89842e3814a18ccb6c443db2172167476009045f /gas | |
parent | 0a7692b27deb082a2102e0be6b1124916b420c3b (diff) | |
download | gdb-5f15756d1177d72d8d32465bed939a1ace016592.zip gdb-5f15756d1177d72d8d32465bed939a1ace016592.tar.gz gdb-5f15756d1177d72d8d32465bed939a1ace016592.tar.bz2 |
gas/
2007-06-25 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (process_operands): Replace regKludge
with RegKludge.
opcodes/
2007-06-25 H.J. Lu <hongjiu.lu@intel.com>
* i386-opc.h (regKludge): Renamed to ...
(RegKludge): This.
* i386-opc.c (i386_optab): Replace regKludge with RegKludge.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 19a28fa..cb45c26 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2007-06-25 H.J. Lu <hongjiu.lu@intel.com> + + * config/tc-i386.c (process_operands): Replace regKludge + with RegKludge. + 2007-06-25 Richard Sandiford <richard@codesourcery.com> * config/tc-mips.h (TC_SYMFIELD_TYPE): New. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index ca868f9..296fdcd 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -3324,7 +3324,7 @@ process_operands (void) /* The imul $imm, %reg instruction is converted into imul $imm, %reg, %reg, and the clr %reg instruction is converted into xor %reg, %reg. */ - if (i.tm.opcode_modifier & regKludge) + if (i.tm.opcode_modifier & RegKludge) { if ((i.tm.cpu_flags & CpuSSE4_1)) { |