diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2006-12-13 19:39:12 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2006-12-13 19:39:12 +0000 |
commit | 71903a11b9c39cc546b7004bffa0aab8553389c7 (patch) | |
tree | fe8ef20bec8c1200fb276e93020417aaeaf1cf6a | |
parent | a5c311ca767b8e291e5f9a62c6a13e964bbd56ed (diff) | |
download | gdb-71903a11b9c39cc546b7004bffa0aab8553389c7.zip gdb-71903a11b9c39cc546b7004bffa0aab8553389c7.tar.gz gdb-71903a11b9c39cc546b7004bffa0aab8553389c7.tar.bz2 |
2006-12-13 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (build_modrm_byte): Set the Operand_PCrel
bit only.
-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; } |