diff options
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 49e2e4e..ec7aa61 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2006-12-13 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (build_modrm_byte): Set the Operand_PCrel + bit only. + +2006-12-13 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (match_template): Use a for loop to set operand_types array. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index fc1f707..959afe6 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -3526,7 +3526,7 @@ build_modrm_byte () i.rm.regmem = NO_BASE_REGISTER; i.types[op] &= ~ Disp; i.types[op] |= Disp32S; - i.flags[op] = Operand_PCrel; + i.flags[op] |= Operand_PCrel; if (! i.disp_operands) fake_zero_displacement = 1; } |