* config/tc-ppc.c (md_apply_fix3): Fix check for lq insns.

This commit is contained in:
Alan Modra 2003-07-29 06:48:30 +00:00
parent 494dac0c9f
commit 77a6138a46
2 changed files with 5 additions and 1 deletions

View File

@ -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".

View File

@ -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)