From ab382c88944a3491c57a2cee21b55b90442e6250 Mon Sep 17 00:00:00 2001 From: Paul Pluzhnikov Date: Wed, 7 Oct 2015 23:17:33 -0700 Subject: [PATCH] stdio-common/tst-printf-bz18872.sh: Use attribute optimize instead of This fixes build problems on arm, aarch64 and s390, which failed due to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59884. --- ChangeLog | 5 +++++ stdio-common/tst-printf-bz18872.sh | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 85bfbd20c0..6b2e5d3b9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-10-07 Paul Pluzhnikov + + * stdio-common/tst-printf-bz18872.sh: Use attribute optimize + instead of #pragma optimize. + 2015-10-07 Carlos O'Donell [BZ #17195] diff --git a/stdio-common/tst-printf-bz18872.sh b/stdio-common/tst-printf-bz18872.sh index 0127e73024..2517e8319e 100644 --- a/stdio-common/tst-printf-bz18872.sh +++ b/stdio-common/tst-printf-bz18872.sh @@ -30,9 +30,8 @@ cat <<'EOF' /* Compile do_test without optimization: GCC 4.9/5.0/6.0 takes a long time to build this source. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67396 */ -#pragma GCC push_options -#pragma GCC optimize ("-O0") +__attribute__ ((optimize ("-O0"))) int do_test (void) { mtrace (); @@ -62,7 +61,6 @@ cat <<'EOF' return 0; } -#pragma GCC pop_options #define TEST_FUNCTION do_test () #include "../test-skeleton.c" -- 2.11.4.GIT