aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBernd Schmidt <bernds@codesourcery.com>2011-08-30 13:16:44 +0000
committerBernd Schmidt <bernds@gcc.gnu.org>2011-08-30 13:16:44 +0000
commit070f36cf077d9cfbfe737712f61a9ff5a3c49820 (patch)
tree481cae6701bb1f6456aa2164e3957e498fab6a0d /gcc
parent6cce215622c7a24991d7c90d743cc82cc1b0d76c (diff)
downloadgcc-070f36cf077d9cfbfe737712f61a9ff5a3c49820.zip
gcc-070f36cf077d9cfbfe737712f61a9ff5a3c49820.tar.gz
gcc-070f36cf077d9cfbfe737712f61a9ff5a3c49820.tar.bz2
i386.c (get_pc_thunk_name): Change prefix to "__x86.get_pc_thunk".
* config/i386/i386.c (get_pc_thunk_name): Change prefix to "__x86.get_pc_thunk". his line, and those below, will be ignored-- M ChangeLog M config/i386/i386.c From-SVN: r178297
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/config/i386/i386.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3170e41..5bcfa4a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index 48b9be0..32495ee 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -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);
}