From: Jim Wilson Date: Wed, 22 Nov 2000 01:12:05 +0000 (+0000) Subject: Fix assembler error on linux kernel mm/memory.c file. X-Git-Tag: gprof-pre-ansify-2004-05-26~7438 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9b3ec33294f4888ace41431c661891ef4ac0c0d1;p=pf3gnuchains%2Fpf3gnuchains4x.git 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. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 7b6b6238b7..dd97b0e29e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2000-11-21 Jim Wilson + + * config/tc-ia64.c (emit_one_bundle): Pass size of 8 not 4 to + fix_new_exp. + 2000-11-21 Jakub Jelinek * config/tc-sparc.c (md_pseudo_table): Add .file and .loc. diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c index afdf35b64a..659ad411d4 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);