mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 13:27:26 +08:00
* config/tc-ia64.c (ia64_handle_align): Remove bogus be_nop.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2003-11-10 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* config/tc-ia64.c (ia64_handle_align): Remove bogus be_nop.
|
||||||
|
|
||||||
2003-11-10 Alan Modra <amodra@bigpond.net.au>
|
2003-11-10 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* README: Update bug report address. Move bug reporting info to
|
* README: Update bug report address. Move bug reporting info to
|
||||||
@ -113,7 +117,7 @@
|
|||||||
(md_begin): Remove F_SOFT_FLOAT if enabling MAVERICK FP.
|
(md_begin): Remove F_SOFT_FLOAT if enabling MAVERICK FP.
|
||||||
|
|
||||||
2003-10-21 Peter Barada <pbarada@mail.wm.sps.mot.com>
|
2003-10-21 Peter Barada <pbarada@mail.wm.sps.mot.com>
|
||||||
Bernardo Innocenti <bernie@develer.com>
|
Bernardo Innocenti <bernie@develer.com>
|
||||||
|
|
||||||
* config/tc-m68k.c: Add MCF528x (MCFv4) support.
|
* config/tc-m68k.c: Add MCF528x (MCFv4) support.
|
||||||
* config/m68k-parse.h: Likewise.
|
* config/m68k-parse.h: Likewise.
|
||||||
|
@ -10744,9 +10744,6 @@ ia64_handle_align (fragp)
|
|||||||
fragS *fragp;
|
fragS *fragp;
|
||||||
{
|
{
|
||||||
/* Use mfi bundle of nops with no stop bits. */
|
/* Use mfi bundle of nops with no stop bits. */
|
||||||
static const unsigned char be_nop[]
|
|
||||||
= { 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
|
|
||||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c};
|
|
||||||
static const unsigned char le_nop[]
|
static const unsigned char le_nop[]
|
||||||
= { 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
= { 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||||
0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00};
|
0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00};
|
||||||
@ -10771,7 +10768,8 @@ ia64_handle_align (fragp)
|
|||||||
fragp->fr_fix += fix;
|
fragp->fr_fix += fix;
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy (p, (target_big_endian ? be_nop : le_nop), 16);
|
/* Instruction bundles are always little-endian. */
|
||||||
|
memcpy (p, le_nop, 16);
|
||||||
fragp->fr_var = 16;
|
fragp->fr_var = 16;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user