* config/tc-ppc.c (md_apply_fix3): Fix check for lq insns.
This commit is contained in:
parent
494dac0c9f
commit
77a6138a46
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-07-29 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* config/tc-ppc.c (md_apply_fix3): Fix check for lq insns.
|
||||
|
||||
2003-07-28 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* config/obj-elf.c (obj_elf_section_type): Also accept "note".
|
||||
|
|
|
@ -5742,7 +5742,7 @@ md_apply_fix3 (fixP, valP, seg)
|
|||
mask = 0xfffc;
|
||||
/* lq insns reserve the four lsbs. */
|
||||
if ((ppc_cpu & PPC_OPCODE_POWER4) != 0
|
||||
&& (val & (0x3f << 26)) == (56 << 26))
|
||||
&& (val & (0x3f << 26)) == (56u << 26))
|
||||
mask = 0xfff0;
|
||||
val |= value & mask;
|
||||
if (target_big_endian)
|
||||
|
|
Loading…
Reference in a new issue