From 1ca2d03e3e4c8b27a666676bb5b92e6f5d6f2a07 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 21 Mar 2014 18:21:13 +0000 Subject: Fix -Wundef warnings for _ABI* on MIPS. This patch fixes -Wundef warnings related to the _ABI* macros on MIPS. GCC predefines only the _ABI* macro related to the ABI actually in use, meaning that a conditional such as "#if _MIPS_SIM == _ABI64" is true only for the ABI in question (all the macros are nonzero), but produces a -Wundef warning for the other ABIs. The normal approach to using these macros is to include , which ensures that all three _ABI* macros are defined rather than just one; this patch does so in the places that caused warnings (the bulk of the warnings arising from ). Tested that the warnings are fixed. * sysdeps/mips/bits/wordsize.h: Include . * sysdeps/unix/sysv/linux/mips/getrlimit64.c: Likewise. * sysdeps/unix/sysv/linux/mips/setrlimit64.c: Likewise. --- sysdeps/mips/bits/wordsize.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sysdeps/mips') diff --git a/sysdeps/mips/bits/wordsize.h b/sysdeps/mips/bits/wordsize.h index 3f05c7d652..2c29d8181f 100644 --- a/sysdeps/mips/bits/wordsize.h +++ b/sysdeps/mips/bits/wordsize.h @@ -15,6 +15,8 @@ License along with the GNU C Library. If not, see . */ +#include + #define __WORDSIZE _MIPS_SZPTR #if _MIPS_SIM == _ABI64 # define __WORDSIZE_TIME64_COMPAT32 1 -- cgit v1.2.3