diff options
author | Andreas Jaeger <aj@suse.de> | 2000-06-18 17:20:01 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-06-18 17:20:01 +0000 |
commit | 046a21942a9ce6fd6f897143dfd8a7dc1d532942 (patch) | |
tree | 7a7ce47535d80e8223cbd08b78d206a13b095515 /sysdeps | |
parent | 89ffa8a88378b50a4fa9ad4084a4de3ef431777d (diff) | |
download | glibc-046a21942a9ce6fd6f897143dfd8a7dc1d532942.tar glibc-046a21942a9ce6fd6f897143dfd8a7dc1d532942.tar.gz glibc-046a21942a9ce6fd6f897143dfd8a7dc1d532942.tar.bz2 glibc-046a21942a9ce6fd6f897143dfd8a7dc1d532942.zip |
* sysdeps/mips/dl-machine.h: Always use $25 as jump register.
Patch by Ralf Baechle <ralf@uni-koblenz.de>.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mips/dl-machine.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h index 322add2e08..f08afa9c7f 100644 --- a/sysdeps/mips/dl-machine.h +++ b/sysdeps/mips/dl-machine.h @@ -403,7 +403,8 @@ _dl_start_user:\n\ # Pass our finalizer function to the user in $2 as per ELF ABI.\n\ la $2, _dl_fini\n\ # Jump to the user entry point.\n\ - jr $17\n"\ + move $25, $17\n\ + jr $25\n"\ _RTLD_EPILOGUE(ENTRY_POINT)\ "\n.previous"\ ); |