aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2002-01-09 18:07:46 -0800
committerRichard Henderson <rth@gcc.gnu.org>2002-01-09 18:07:46 -0800
commite4ac76b4f1674a89ac14937e052c7f28d0de0b95 (patch)
treee86b420c76718238d48a3a9a1d275c178d0b9753 /gcc
parent2c74ce9d880dff540a4da3ed5a099060d98c2264 (diff)
downloadgcc-e4ac76b4f1674a89ac14937e052c7f28d0de0b95.zip
gcc-e4ac76b4f1674a89ac14937e052c7f28d0de0b95.tar.gz
gcc-e4ac76b4f1674a89ac14937e052c7f28d0de0b95.tar.bz2
* config/alpha/alpha.md (prologue_mcount): Remove lituse_jsr reloc.
From-SVN: r48707
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/alpha/alpha.md4
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c1481c6..8909c4a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-09 Richard Henderson <rth@redhat.com>
+
+ * config/alpha/alpha.md (prologue_mcount): Remove lituse_jsr reloc.
+
2002-01-10 Hans-Peter Nilsson <hp@bitrange.com>
* config/mmix/mmix.c (mmix_asm_identify_gcc): Remove unused
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md
index 31d03c4..68191bf 100644
--- a/gcc/config/alpha/alpha.md
+++ b/gcc/config/alpha/alpha.md
@@ -6523,7 +6523,9 @@ fadd,fmul,fcpys,fdiv,fsqrt,misc,mvi,ftoi,itof,multi"
""
{
if (TARGET_EXPLICIT_RELOCS)
- return "ldq $28,_mcount($29)\t\t!literal!%#\;jsr $28,($28),_mcount\t\t!lituse_jsr!%#";
+ /* Note that we cannot use a lituse_jsr reloc, since _mcount
+ cannot be called via the PLT. */
+ return "ldq $28,_mcount($29)\t\t!literal\;jsr $28,($28),_mcount";
else
return "lda $28,_mcount\;jsr $28,($28),_mcount";
}