diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-08-11 18:41:18 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-08-11 18:41:18 +0000 |
commit | 7ae1406576732e93c719d29fc612ad481d1b9acb (patch) | |
tree | 418f854daf518c2dfbea4d539e42737e8ed7ee1e /libexec/ld.so/alpha/ldasm.S | |
parent | cf12fd91c3ab31fc23c40794cea2a00487bda01e (diff) |
The parameter dynp was never used, rather than pass in a dummy on most
archs and a nasty calcuation on others, remove the parameter.
Diffstat (limited to 'libexec/ld.so/alpha/ldasm.S')
-rw-r--r-- | libexec/ld.so/alpha/ldasm.S | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libexec/ld.so/alpha/ldasm.S b/libexec/ld.so/alpha/ldasm.S index 56f04962486..cc4eac26afa 100644 --- a/libexec/ld.so/alpha/ldasm.S +++ b/libexec/ld.so/alpha/ldasm.S @@ -1,4 +1,4 @@ -/* $OpenBSD: ldasm.S,v 1.8 2002/07/12 20:18:30 drahn Exp $ */ +/* $OpenBSD: ldasm.S,v 1.9 2002/08/11 18:41:17 drahn Exp $ */ /* * Copyright (c) 2001 Niklas Hallqvist @@ -102,11 +102,10 @@ L3: lda s2, 0(sp) mov s2, a3 CALL(_dl_boot_bind) - mov s3, a0 - mov s4, a1 - mov s1, a2 - mov s5, a3 - mov s2, a4 + mov s3, a0 /* **argv */ + mov s4, a1 /* **envp */ + mov s1, a2 /* loff */ + mov s2, a3 /* dl_data */ CALL(_dl_boot) mov s0, a0 mov v0, pv |