diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 02:07:46 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 02:07:46 +0000 |
| commit | 12f1cd0c4252f082ff24fc0d1ee56b08b2f1753b (patch) | |
| tree | e86b420c76718238d48a3a9a1d275c178d0b9753 | |
| parent | f2653b94ebff34e580af43d41c3c465448ee144a (diff) | |
| download | ppe42-gcc-12f1cd0c4252f082ff24fc0d1ee56b08b2f1753b.tar.gz ppe42-gcc-12f1cd0c4252f082ff24fc0d1ee56b08b2f1753b.zip | |
* config/alpha/alpha.md (prologue_mcount): Remove lituse_jsr reloc.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48707 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/alpha/alpha.md | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c1481c68ec8..8909c4a58d5 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 31d03c43ad1..68191bf9810 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"; } |

