diff options
| author | thorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-17 20:58:48 +0000 |
|---|---|---|
| committer | thorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-17 20:58:48 +0000 |
| commit | f0bdd254dddbb98c5e2d045d612bdf4df7046ba6 (patch) | |
| tree | 43caa86d21ef5a66983711fd0dc5ee41e8ce807f | |
| parent | 642761bdfd0af43a783e4a0c25a05232134d624b (diff) | |
| download | ppe42-gcc-f0bdd254dddbb98c5e2d045d612bdf4df7046ba6.tar.gz ppe42-gcc-f0bdd254dddbb98c5e2d045d612bdf4df7046ba6.zip | |
* config/alpha/alpha.c (alpha_initialize_trampoline): Use
tramp, not addr, to pass the trampoline address to
__enable_execute_stack.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58258 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/alpha/alpha.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3ec27fbbd65..71e8c6088cb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-10-17 Jason Thorpe <thorpej@wasabisystems.com> + + * config/alpha/alpha.c (alpha_initialize_trampoline): Use + tramp, not addr, to pass the trampoline address to + __enable_execute_stack. + Thu Oct 17 18:40:47 CEST 2002 Jan Hubicka <jh@suse.cz> * mmintrin.h: Guard by __MMX__ diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index b35e3f9c85d..4e491377ca2 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -6040,7 +6040,7 @@ alpha_initialize_trampoline (tramp, fnaddr, cxt, fnofs, cxtofs, jmpofs) #ifdef TRANSFER_FROM_TRAMPOLINE emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__enable_execute_stack"), - 0, VOIDmode, 1, addr, Pmode); + 0, VOIDmode, 1, tramp, Pmode); #endif if (jmpofs >= 0) |

