2006-12-13 H.J. Lu <hongjiu.lu@intel.com>

* config/tc-i386.c (build_modrm_byte): Set the Operand_PCrel
	bit only.
This commit is contained in:
H.J. Lu 2006-12-13 19:39:12 +00:00
parent a5c311ca76
commit 71903a11b9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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;
}