diff options
author | 2019-02-03 03:44:06 +0000 | |
---|---|---|
committer | 2019-02-03 03:44:06 +0000 | |
commit | 6e31582a5a78bff1ee809593bab7e86e3929b587 (patch) | |
tree | c952aa9aa143dc5109b5ec1d5739cc32f0a4f9a5 | |
parent | _dl_cerror is trivial on alpha and m88k; just inline the hanlding into (diff) | |
download | wireguard-openbsd-6e31582a5a78bff1ee809593bab7e86e3929b587.tar.xz wireguard-openbsd-6e31582a5a78bff1ee809593bab7e86e3929b587.zip |
_dl_cerror is trivial on powerpc; just inline the handling into the stubs
based on a diff from miod@
-rw-r--r-- | libexec/ld.so/powerpc/SYS.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libexec/ld.so/powerpc/SYS.h b/libexec/ld.so/powerpc/SYS.h index 6128c3cfd77..ea30a339c9d 100644 --- a/libexec/ld.so/powerpc/SYS.h +++ b/libexec/ld.so/powerpc/SYS.h @@ -1,4 +1,4 @@ -/* $OpenBSD: SYS.h,v 1.1 2017/08/27 21:59:52 deraadt Exp $ */ +/* $OpenBSD: SYS.h,v 1.2 2019/02/03 03:44:06 guenther Exp $ */ /* * Copyright (c) 1999 Dale Rahn @@ -35,7 +35,5 @@ ENTRY(_dl_##n) \ sc ;\ cmpwi 0, 0 ;\ beqlr+ ;\ - b _dl_cerror -_dl_cerror: - neg 3, 3 + neg 3, 3 ;\ blr |