diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-06-23 20:15:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-06-23 20:15:53 +0000 |
commit | 712728976129570c4ad1892fac2ab81d38d2bba1 (patch) | |
tree | a70beb076c0a78c4fbfe39b2e79e578ceace0c96 | |
parent | c01918933cf257db1870937ca0b0597420a89c1b (diff) |
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) \ |