public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Christophe Lyon <christophe.lyon@st.com>
To: <gcc-patches@gcc.gnu.org>
Cc: <christophe.lyon@linaro.org>
Subject: [ARM/FDPIC v4 19/20] [ARM][testsuite] FDPIC: Adjust pr43698.c to avoid clash with uclibc.
Date: Fri, 16 Nov 2018 15:54:00 -0000	[thread overview]
Message-ID: <20181116154808.25154-20-christophe.lyon@st.com> (raw)
In-Reply-To: <20181116154808.25154-1-christophe.lyon@st.com>

uclibc defines bswap_32, so use a different name in this test.

2018-XX-XX  Christophe Lyon  <christophe.lyon@st.com>

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

Change-Id: I2591bd911030814331cabf97ee5cf6cf8124b4f3

diff --git a/gcc/testsuite/gcc.target/arm/pr43698.c b/gcc/testsuite/gcc.target/arm/pr43698.c
index 1fc497c..3b5dad0 100644
--- a/gcc/testsuite/gcc.target/arm/pr43698.c
+++ b/gcc/testsuite/gcc.target/arm/pr43698.c
@@ -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; \
     }))
-- 
2.6.3

  parent reply	other threads:[~2018-11-16 15:54 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-16 15:48 [ARM/FDPIC v4 00/20] FDPIC ABI for ARM Christophe Lyon
2018-11-16 15:48 ` [ARM/FDPIC v4 01/20] [ARM] FDPIC: Add -mfdpic option support Christophe Lyon
2018-11-16 15:49 ` [ARM/FDPIC v4 04/20] [ARM] FDPIC: Add support for FDPIC for arm architecture Christophe Lyon
2018-11-16 15:49 ` [ARM/FDPIC v4 03/20] [ARM] FDPIC: Force FDPIC related options unless -mno-fdpic is provided Christophe Lyon
2018-11-16 15:49 ` [ARM/FDPIC v4 02/20] [ARM] FDPIC: Handle arm*-*-uclinuxfdpiceabi in configure scripts Christophe Lyon
2018-11-16 15:50 ` [ARM/FDPIC v4 08/20] [ARM] FDPIC: Enforce local/global binding for function descriptors Christophe Lyon
2018-11-16 15:50 ` [ARM/FDPIC v4 05/20] [ARM] FDPIC: Fix __do_global_dtors_aux and frame_dummy generation Christophe Lyon
2018-11-16 15:50 ` [ARM/FDPIC v4 07/20] [ARM] FDPIC: Avoid saving/restoring r9 on stack since it is read-only Christophe Lyon
2018-11-16 15:50 ` [ARM/FDPIC v4 06/20] [ARM] FDPIC: Add support for c++ exceptions Christophe Lyon
2018-11-16 15:51 ` [ARM/FDPIC v4 09/20] [ARM] FDPIC: Add support for taking address of nested function Christophe Lyon
2018-11-16 15:51 ` [ARM/FDPIC v4 10/20] [ARM] FDPIC: Implement TLS support Christophe Lyon
2018-11-16 15:52 ` [ARM/FDPIC v4 13/20] [ARM] FDPIC: Force LSB bit for PC in Cortex-M architecture Christophe Lyon
2018-11-16 15:52 ` [ARM/FDPIC v4 12/20] [ARM] FDPIC: Restore r9 after we call __aeabi_read_tp Christophe Lyon
2018-11-16 15:52 ` [ARM/FDPIC v4 11/20] [ARM] FDPIC: Add support to unwind FDPIC signal frame Christophe Lyon
2018-11-16 15:53 ` [ARM/FDPIC v4 16/20] [ARM][testsuite] FDPIC: Skip tests that don't work in PIC mode Christophe Lyon
2018-11-16 15:53 ` [ARM/FDPIC v4 15/20] [ARM][testsuite] FDPIC: Adjust scan-assembler patterns Christophe Lyon
2018-11-16 15:53 ` [ARM/FDPIC v4 14/20] [ARM][testsuite] FDPIC: Skip unsupported tests Christophe Lyon
2018-11-16 15:54 ` [ARM/FDPIC v4 17/20] [ARM][testsuite] FDPIC: Handle *-*-uclinux* Christophe Lyon
2018-11-16 15:54 ` [ARM/FDPIC v4 18/20] [ARM][testsuite] FDPIC: Enable tests on pie_enabled targets Christophe Lyon
2018-11-16 15:54 ` Christophe Lyon [this message]
2018-11-16 15:55 ` [ARM/FDPIC v4 20/20] [ARM][testsuite] FDPIC: Skip tests using architectures unsupported by FDPIC Christophe Lyon
2018-11-26 10:14 ` [ARM/FDPIC v4 00/20] FDPIC ABI for ARM Christophe Lyon
2018-12-03  9:19   ` Christophe Lyon
2018-12-11 10:27     ` Christophe Lyon
2019-01-02 11:44       ` Christophe Lyon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181116154808.25154-20-christophe.lyon@st.com \
    --to=christophe.lyon@st.com \
    --cc=christophe.lyon@linaro.org \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).