diff options
author | 2013-06-23 20:15:52 +0000 | |
---|---|---|
committer | 2013-06-23 20:15:52 +0000 | |
commit | 668c1a2ef5bfa6b31b0ed24ca8e74a5fbaef1cb9 (patch) | |
tree | 572233b89553cf4bb7ed2fca4080b49f1e846a8d | |
parent | Stop using deprecated functions from Kerberos. (diff) | |
download | wireguard-openbsd-668c1a2ef5bfa6b31b0ed24ca8e74a5fbaef1cb9.tar.xz wireguard-openbsd-668c1a2ef5bfa6b31b0ed24ca8e74a5fbaef1cb9.zip |
Fix RELOC() in the __STDC__ case.
-rw-r--r-- | sys/arch/hp300/hp300/locore.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/hp300/locore.s b/sys/arch/hp300/hp300/locore.s index 28e56027898..7239cd2de18 100644 --- a/sys/arch/hp300/hp300/locore.s +++ b/sys/arch/hp300/hp300/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.71 2013/02/02 13:34:29 miod Exp $ */ +/* $OpenBSD: locore.s,v 1.72 2013/06/23 20:15:52 miod Exp $ */ /* $NetBSD: locore.s,v 1.91 1998/11/11 06:41:25 thorpej Exp $ */ /* @@ -115,7 +115,7 @@ ASLOCAL(tmpstk) */ #ifdef __STDC__ #define _RELOC(var, ar) \ - movel # var,ar; \ + movel var,ar; \ addl %a5,ar #else #define _RELOC(var, ar) \ |