diff options
author | 2001-09-10 19:39:27 +0000 | |
---|---|---|
committer | 2001-09-10 19:39:27 +0000 | |
commit | 3eae252b7ea66b47e5337b1f3f8b3ac02df4f34b (patch) | |
tree | 2f119ad996b728dbc5d0c07a759e78365b635187 /lib/libpthread/arch/sparc | |
parent | Use ${LIBCSRCDIR} not ${.CURDIR} for relative path (allows libc_r to build) (diff) | |
download | wireguard-openbsd-3eae252b7ea66b47e5337b1f3f8b3ac02df4f34b.tar.xz wireguard-openbsd-3eae252b7ea66b47e5337b1f3f8b3ac02df4f34b.zip |
Our gcc defines __sparcv9__ not __sparc_v9__
Diffstat (limited to 'lib/libpthread/arch/sparc')
-rw-r--r-- | lib/libpthread/arch/sparc/uthread_machdep_asm.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/arch/sparc/uthread_machdep_asm.S b/lib/libpthread/arch/sparc/uthread_machdep_asm.S index 27be8c45311..52a41d472f8 100644 --- a/lib/libpthread/arch/sparc/uthread_machdep_asm.S +++ b/lib/libpthread/arch/sparc/uthread_machdep_asm.S @@ -1,4 +1,4 @@ -/* $OpenBSD: uthread_machdep_asm.S,v 1.1 2000/09/25 01:16:40 d Exp $ */ +/* $OpenBSD: uthread_machdep_asm.S,v 1.2 2001/09/10 19:39:27 jason Exp $ */ /* David Leonard <d@csee.uq.edu.au>. Public domain. */ #include <machine/asm.h> @@ -9,7 +9,7 @@ * On sparc this also means we switch register windows. */ -#ifdef __sparc_v9__ +#ifdef __sparcv9__ #define flushw .word 0x81580000 #else #define flushw t T_FLUSHWIN |