From: espie Date: Fri, 14 Sep 2001 16:40:12 +0000 (+0000) Subject: 2001-09-14 Marc Espie X-Git-Tag: upstream/4.9.2~92081 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e591b9a79dcc5125907ef0f3286f70b855c94beb;p=platform%2Fupstream%2Flinaro-gcc.git 2001-09-14 Marc Espie * config/i386/unix.h (ASM_OUTPUT_MI_THUNK): Generate reference to GOT correctly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45601 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5855c43..1e15f4f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-09-14 Marc Espie + * config/i386/unix.h (ASM_OUTPUT_MI_THUNK): Generate reference to GOT + correctly. + 2001-09-14 Roman Lechtchinsky * config/alpha/alpha.md (unaligned_extendhidi_be): Fix. diff --git a/gcc/config/i386/unix.h b/gcc/config/i386/unix.h index a1fab03..1fe829a 100644 --- a/gcc/config/i386/unix.h +++ b/gcc/config/i386/unix.h @@ -87,7 +87,7 @@ Boston, MA 02111-1307, USA. */ #define ASM_OUTPUT_MI_THUNK(FILE, THUNK_FNDECL, DELTA, FUNCTION) \ do { \ tree parm; \ - rtx xops[2]; \ + rtx xops[3]; \ \ if (ix86_regparm > 0) \ parm = TYPE_ARG_TYPES (TREE_TYPE (function)); \ @@ -110,6 +110,7 @@ do { \ { \ xops[0] = pic_offset_table_rtx; \ xops[1] = gen_label_rtx (); \ + xops[2] = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_"); \ \ if (ix86_regparm > 2) \ abort (); \ @@ -117,7 +118,7 @@ do { \ output_asm_insn ("call\t%P1", xops); \ ASM_OUTPUT_INTERNAL_LABEL (FILE, "L", CODE_LABEL_NUMBER (xops[1])); \ output_asm_insn ("pop{l}\t%0", xops); \ - output_asm_insn ("add{l}\t{$_GLOBAL_OFFSET_TABLE_+[.-%P1], %0|%0, OFFSET FLAT: _GLOBAL_OFFSET_TABLE_+[.-%P1]}", xops); \ + output_asm_insn ("add{l}\t{%2+[.-%P1], %0|%0, OFFSET FLAT: %2+[.-%P1]}", xops); \ xops[0] = gen_rtx_MEM (SImode, XEXP (DECL_RTL (FUNCTION), 0)); \ output_asm_insn ("mov{l}\t{%0@GOT(%%ebx), %%ecx|%%ecx, %0@GOT[%%ebx]}",\ xops); \