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/powerpc/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/powerpc/ldasm.S')
-rw-r--r-- | libexec/ld.so/powerpc/ldasm.S | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libexec/ld.so/powerpc/ldasm.S b/libexec/ld.so/powerpc/ldasm.S index caf43ea950b..8bcf48d17b9 100644 --- a/libexec/ld.so/powerpc/ldasm.S +++ b/libexec/ld.so/powerpc/ldasm.S @@ -1,4 +1,4 @@ -/* $OpenBSD: ldasm.S,v 1.5 2002/07/07 08:54:50 jufi Exp $ */ +/* $OpenBSD: ldasm.S,v 1.6 2002/08/11 18:41:17 drahn Exp $ */ /* * Copyright (c) 1999 Dale Rahn @@ -129,8 +129,7 @@ ENTRY(_dl_start) mr 3, 21 # argv mr 4, 22 # envp mr 5, 17 # loff - mr 6, 18 # dynamicp - addi 7, 1, 8 # dl_data + addi 6, 1, 8 # dl_data bl _dl_boot@local |