From: Andrew Pinski Date: Sun, 8 Dec 2019 00:08:55 +0000 (+0000) Subject: Fix libstdc++ compiling for an aarch64 multilib with big-endian. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c44e87ac7c1c30fab503c7087b5ec2865a75cdcd;p=gcc.git Fix libstdc++ compiling for an aarch64 multilib with big-endian. 2019-12-07 Andrew Pinski * config/cpu/aarch64/opt/ext/opt_random.h: Wrap around with check for little-endian like ext/random is done. From-SVN: r279081 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b041bb4e3ed..0b68e88d1df 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2019-12-07 Andrew Pinski + + * config/cpu/aarch64/opt/ext/opt_random.h: Wrap around with check + for little-endian like ext/random is done. + 2019-12-05 Jonathan Wakely * testsuite/23_containers/span/lwg3255.cc: Fix test. Constructing a diff --git a/libstdc++-v3/config/cpu/aarch64/opt/ext/opt_random.h b/libstdc++-v3/config/cpu/aarch64/opt/ext/opt_random.h index 696a6d18ab4..9eca9b7df74 100644 --- a/libstdc++-v3/config/cpu/aarch64/opt/ext/opt_random.h +++ b/libstdc++-v3/config/cpu/aarch64/opt/ext/opt_random.h @@ -44,6 +44,7 @@ _C+8, _C+9, _C+10, _C+11, _C+12, _C+13, _C+14, _C+15}) #endif +#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ namespace __gnu_cxx _GLIBCXX_VISIBILITY (default) { _GLIBCXX_BEGIN_NAMESPACE_VERSION @@ -175,6 +176,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION _GLIBCXX_END_NAMESPACE_VERSION } // namespace +#endif // __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ #endif // __ARM_NEON #endif // _EXT_OPT_RANDOM_H