mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 12:24:38 +08:00
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.
This commit is contained in:
parent
6e301b2bf2
commit
5a080f897a
@ -1,3 +1,8 @@
|
||||
2000-11-21 Jim Wilson <wilson@redhat.com>
|
||||
|
||||
* config/tc-ia64.c (emit_one_bundle): Pass size of 8 not 4 to
|
||||
fix_new_exp.
|
||||
|
||||
2000-11-21 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* config/tc-sparc.c (md_pseudo_table): Add .file and .loc.
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user