From 1c55739d1a2ada43face764a746c26391834e16c Mon Sep 17 00:00:00 2001 From: hubicka Date: Wed, 1 Dec 2010 18:56:21 +0000 Subject: [PATCH] * gcc.c-torture/execute/bcp-1.c: Make ready for -fuse-linker-plugin git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167353 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/testsuite/ChangeLog | 4 ++++ gcc/testsuite/gcc.c-torture/execute/bcp-1.c | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 3f37499..332c0bc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2010-12-01 Jan Hubicka + + * gcc.c-torture/execute/bcp-1.c: Make ready for -fuse-linker-plugin + 2010-12-01 Sebastian Pop PR middle-end/45297 diff --git a/gcc/testsuite/gcc.c-torture/execute/bcp-1.c b/gcc/testsuite/gcc.c-torture/execute/bcp-1.c index fcb65cb..8dd8e22 100644 --- a/gcc/testsuite/gcc.c-torture/execute/bcp-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/bcp-1.c @@ -1,4 +1,4 @@ -int global; +__attribute__ ((externally_visible)) int global; int func(void); /* These must fail. */ @@ -39,23 +39,23 @@ int opt2(void) { return __builtin_constant_p("hi"[0]); } /* Call through tables so -finline-functions can't screw with us. */ -int (*bad_t0[])(void) = { +int (* volatile bad_t0[])(void) = { bad0, bad1, bad5, bad7, bad8, bad10 }; -int (*bad_t1[])(int x) = { +int (* volatile bad_t1[])(int x) = { bad2, bad3, bad6 }; -int (*bad_t2[])(const char *x) = { +int (* volatile bad_t2[])(const char *x) = { bad4, bad9 }; -int (*good_t0[])(void) = { +int (* volatile good_t0[])(void) = { good0, good1, good2 }; -int (*opt_t0[])(void) = { +int (* volatile opt_t0[])(void) = { opt0, opt1, opt2 /* , opt3 */ }; -- 2.7.4