[patch] Fix build error for tst-printf-bz18872 on arm/aarch64 and s390
Paul Pluzhnikov
ppluzhnikov@google.com
Thu Oct 8 05:06:00 GMT 2015
On Wed, Oct 7, 2015 at 8:13 PM, Paul Pluzhnikov <ppluzhnikov@google.com> wrote:
The attribute nicely works around the aarch64 break.
Thanks!
2015-10-07 Paul Pluzhnikov <ppluzhnikov@google.com>
* stdio-common/tst-printf-bz18872.sh: Use attribute optimize instead of
#pragma optimize.
--
Paul Pluzhnikov
-------------- next part --------------
diff --git a/stdio-common/tst-printf-bz18872.sh b/stdio-common/tst-printf-bz18872.sh
index 0127e73..ee68fa8 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"
More information about the Libc-alpha
mailing list