aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorJim Wilson <wilson@tuliptree.org>2000-11-22 01:12:05 +0000
committerJim Wilson <wilson@tuliptree.org>2000-11-22 01:12:05 +0000
commit5a080f897a2ec36ef530f27209ad35e2673e1274 (patch)
tree0917d4437b57b308ac0397c7b2243b6820f1d2fb /gas/config
parent6e301b2bf25b9edd28d5d8cb7d3046eed15a104f (diff)
downloadgdb-5a080f897a2ec36ef530f27209ad35e2673e1274.zip
gdb-5a080f897a2ec36ef530f27209ad35e2673e1274.tar.gz
gdb-5a080f897a2ec36ef530f27209ad35e2673e1274.tar.bz2
Fix assembler error on linux kernel mm/memory.c file.
* config/tc-ia64.c (emit_one_bundle): Pass size of 8 not 4 to fix_new_exp.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-ia64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c
index afdf35b..659ad41 100644
--- a/gas/config/tc-ia64.c
+++ b/gas/config/tc-ia64.c
@@ -5695,7 +5695,7 @@ emit_one_bundle ()
for (j = 0; j < md.slot[curr].num_fixups; ++j)
{
ifix = md.slot[curr].fixup + j;
- fix = fix_new_exp (frag_now, frag_now_fix () - 16 + i, 4,
+ fix = fix_new_exp (frag_now, frag_now_fix () - 16 + i, 8,
&ifix->expr, ifix->is_pcrel, ifix->code);
fix->tc_fix_data.opnd = ifix->opnd;
fix->fx_plt = (fix->fx_r_type == BFD_RELOC_IA64_PLTOFF22);