* config/i386/i386.c (x86_output_mi_thunk): Fix x86_64 pic jump.

From-SVN: r58508
This commit is contained in:
Richard Henderson 2002-10-24 15:36:25 -07:00 committed by Richard Henderson
parent 1a86c85041
commit fcbe3b8922
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-10-24 Richard Henderson <rth@redhat.com>
* config/i386/i386.c (x86_output_mi_thunk): Fix x86_64 pic jump.
2002-10-24 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (initial_offset): Simplify by using

View File

@ -14233,7 +14233,14 @@ x86_output_mi_thunk (file, thunk, delta, vcall_offset, function)
if (!flag_pic || (*targetm.binds_local_p) (function))
output_asm_insn ("jmp\t%P0", xops);
else
output_asm_insn ("jmp\t*%P0@GOTPCREL(%%rip)", xops);
{
tmp = XEXP (xops[0], 0);
tmp = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, tmp), UNSPEC_GOTPCREL);
tmp = gen_rtx_CONST (Pmode, tmp);
tmp = gen_rtx_MEM (QImode, tmp);
xops[0] = tmp;
output_asm_insn ("jmp\t%A0", xops);
}
}
else
{