diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-11-08 14:31:49 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-11-08 14:31:49 -0500 |
commit | 1e717ea3d2a864e00e507f1a70a892c551955f1b (patch) | |
tree | 9abf17c9668217f94b8fd5d390e2dd2231d51f1f /src/ldso/mips | |
parent | e8a0b27a7101f5b9939de83df3d6d8b606c5678b (diff) | |
download | musl-1e717ea3d2a864e00e507f1a70a892c551955f1b.tar.gz |
fix dlsym asm for mips
saving the return address from the delay slot is not valid -- by the
time the instruction executes, the return address has already been
replaced.
Diffstat (limited to 'src/ldso/mips')
-rw-r--r-- | src/ldso/mips/dlsym.s | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ldso/mips/dlsym.s b/src/ldso/mips/dlsym.s index b1ea98be..c57b9729 100644 --- a/src/ldso/mips/dlsym.s +++ b/src/ldso/mips/dlsym.s @@ -8,8 +8,9 @@ dlsym: move $6, $ra lw $25, %call16(__dlsym)($gp) addiu $sp, $sp, -16 - jalr $25 sw $ra, 12($sp) + jalr $25 + nop lw $ra, 12($sp) jr $ra addiu $sp, $sp, 16 |