[ARM/FDPIC v6 19/24] [ARM][testsuite] FDPIC: Adjust pr43698.c to avoid clash with...
authorChristophe Lyon <christophe.lyon@st.com>
Tue, 10 Sep 2019 08:08:11 +0000 (10:08 +0200)
committerChristophe Lyon <clyon@gcc.gnu.org>
Tue, 10 Sep 2019 08:08:11 +0000 (10:08 +0200)
uclibc defines bswap_32, so use a different name in this test.

2019-09-10  Christophe Lyon  <christophe.lyon@st.com>

gcc/testsuite/
* gcc.target/arm/pr43698.c (bswap_32): Rename as my_bswap_32.

From-SVN: r275581

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/arm/pr43698.c

index e2e2b69ccd80f41f7c44372ce677ac193b71590e..6b62d88dcdb6393dfb82d9f35799ac7e63dc1dc4 100644 (file)
@@ -1,3 +1,7 @@
+2019-09-10  Christophe Lyon  <christophe.lyon@st.com>
+
+       * gcc.target/arm/pr43698.c (bswap_32): Rename as my_bswap_32.
+
 2019-09-10  Christophe Lyon  <christophe.lyon@st.com>
 
        * g++.dg/cpp0x/noexcept03.C: Add pie_enabled.
index 1fc497c22c2b83b62da1873e6314a980ad9738a0..3b5dad0072408b0f12a05229950bdb3436c0a8bb 100644 (file)
@@ -6,7 +6,7 @@
 
 char do_reverse_endian = 0;
 
-#  define bswap_32(x) \
+#  define my_bswap_32(x) \
   ((((x) & 0xff000000) >> 24) | \
    (((x) & 0x00ff0000) >>  8) | \
    (((x) & 0x0000ff00) <<  8) | \
@@ -16,7 +16,7 @@ char do_reverse_endian = 0;
   (__extension__ ({ \
       uint64_t __res; \
       if (!do_reverse_endian) {    __res = (X); \
-      } else if (sizeof(X) == 4) { __res = bswap_32((X)); \
+      } else if (sizeof(X) == 4) { __res = my_bswap_32((X)); \
       } \
       __res; \
     }))