Fix MIPS _COMPILING_NEWLIB -Werror=undef build.
commite5e72fe9cd17857c198020e847b253045d957e72
authorJoseph Myers <joseph@codesourcery.com>
Mon, 16 Feb 2015 22:18:53 +0000 (16 22:18 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 16 Feb 2015 22:18:53 +0000 (16 22:18 +0000)
tree26738cc894c65619a30a9cb146c76c677717f6dd
parent86c56b164ced14cadd054a37613fbddf896194da
Fix MIPS _COMPILING_NEWLIB -Werror=undef build.

I see an error

../sysdeps/mips/strcmp.S:25:7: error: "_COMPILING_NEWLIB" is not defined [-Werror=undef]
 #elif _COMPILING_NEWLIB
       ^
cc1: some warnings being treated as errors

in MIPS builds.  (This is with GCC 4.9; it's possible that the DR#412
change in GCC 5 - see
<https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60570> - means that
-Wundef diagnostics no longer occur for #elif conditions where a
previous group's condition was true, just as with other errors there.)
This patch duly adjusts the conditionals to test whether
_COMPILING_NEWLIB is defined.

* sysdeps/mips/memcpy.S [_COMPILING_NEWLIB]: Change condition to
[defined _COMPILING_NEWLIB].
* sysdeps/mips/memset.S [_COMPILING_NEWLIB]: Likewise.
* sysdeps/mips/strcmp.S [_COMPILING_NEWLIB]: Likewise.
ChangeLog
sysdeps/mips/memcpy.S
sysdeps/mips/memset.S
sysdeps/mips/strcmp.S