OSDN Git Service

* config/i386/i386.c (get_pc_thunk_name): Change prefix to
authorbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 30 Aug 2011 13:16:44 +0000 (13:16 +0000)
committerbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 30 Aug 2011 13:16:44 +0000 (13:16 +0000)
"__x86.get_pc_thunk".
his line, and those below, will be ignored--

M    ChangeLog
M    config/i386/i386.c

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178297 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/i386/i386.c

index 3170e41..5bcfa4a 100644 (file)
@@ -8,6 +8,9 @@
        no_comb_flag.
        * doc/md.texi (automata_option): Document no-comb-vect.
 
+       * config/i386/i386.c (get_pc_thunk_name): Change prefix to
+       "__x86.get_pc_thunk".
+
 2011-08-30  Christian Bruel  <christian.bruel@st.com>
 
        * coverage.c (coverage_init): Check flag_branch_probabilities instead of
index 48b9be0..32495ee 100644 (file)
@@ -8339,7 +8339,7 @@ get_pc_thunk_name (char name[32], unsigned int regno)
   gcc_assert (!TARGET_64BIT);
 
   if (USE_HIDDEN_LINKONCE)
-    sprintf (name, "__i686.get_pc_thunk.%s", reg_names[regno]);
+    sprintf (name, "__x86.get_pc_thunk.%s", reg_names[regno]);
   else
     ASM_GENERATE_INTERNAL_LABEL (name, "LPR", regno);
 }