From 71d8ad62601cbc302804cf08aeb7945f4ef65dc8 Mon Sep 17 00:00:00 2001 From: visa Date: Mon, 10 Apr 2017 14:35:30 +0000 Subject: [PATCH] Use __ASSEMBLER__ instead of __LANGUAGE_ASSEMBLY. The latter is not defined by clang. OK guenther@, kettenis@ --- sys/arch/mips64/include/signal.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/mips64/include/signal.h b/sys/arch/mips64/include/signal.h index 48534b386bd..fc91e8ef19a 100644 --- a/sys/arch/mips64/include/signal.h +++ b/sys/arch/mips64/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.11 2016/05/10 18:39:47 deraadt Exp $ */ +/* $OpenBSD: signal.h,v 1.12 2017/04/10 14:35:30 visa Exp $ */ /* * Copyright (c) 1992, 1993 @@ -39,7 +39,7 @@ #include -#if !defined(__LANGUAGE_ASSEMBLY) +#if !defined(__ASSEMBLER__) #include /* @@ -69,7 +69,7 @@ struct sigcontext { }; #endif /* __BSD_VISIBLE || __XPG_VISIBLE >= 420 */ -#else /* __LANGUAGE_ASSEMBLY */ +#else /* __ASSEMBLER__ */ #define SC_ONSTACK (0 * REGSZ) #define SC_MASK (1 * REGSZ) #define SC_PC (2 * REGSZ) @@ -79,6 +79,6 @@ struct sigcontext { #define SC_FPREGS (37 * REGSZ) #define SC_FPUSED (70 * REGSZ) #define SC_FPC_EIR (71 * REGSZ) -#endif /* __LANGUAGE_ASSEMBLY */ +#endif /* __ASSEMBLER__ */ #endif /* !_MIPS64_SIGNAL_H_ */ -- 2.20.1