summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2013-06-23 20:15:52 +0000
committermiod <miod@openbsd.org>2013-06-23 20:15:52 +0000
commit668c1a2ef5bfa6b31b0ed24ca8e74a5fbaef1cb9 (patch)
tree572233b89553cf4bb7ed2fca4080b49f1e846a8d
parentStop using deprecated functions from Kerberos. (diff)
downloadwireguard-openbsd-668c1a2ef5bfa6b31b0ed24ca8e74a5fbaef1cb9.tar.xz
wireguard-openbsd-668c1a2ef5bfa6b31b0ed24ca8e74a5fbaef1cb9.zip
Fix RELOC() in the __STDC__ case.
-rw-r--r--sys/arch/hp300/hp300/locore.s4
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) \