aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2003-11-10 03:07:52 +0000
committerAlan Modra <amodra@gmail.com>2003-11-10 03:07:52 +0000
commit012a452b43b77eaf0f0f8a48192561702beea958 (patch)
tree05d60275ca7185411d0daed7ad18622a67214a5b /gas/config
parent36fd3cc3487d6e2858581d4d752cc387929f322d (diff)
downloadfsf-binutils-gdb-012a452b43b77eaf0f0f8a48192561702beea958.zip
fsf-binutils-gdb-012a452b43b77eaf0f0f8a48192561702beea958.tar.gz
fsf-binutils-gdb-012a452b43b77eaf0f0f8a48192561702beea958.tar.bz2
* config/tc-ia64.c (ia64_handle_align): Remove bogus be_nop.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-ia64.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c
index 6fb8578..647724b 100644
--- a/gas/config/tc-ia64.c
+++ b/gas/config/tc-ia64.c
@@ -10744,9 +10744,6 @@ ia64_handle_align (fragp)
fragS *fragp;
{
/* 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[]
= { 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00};
@@ -10771,7 +10768,8 @@ ia64_handle_align (fragp)
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;
}