funcspec-1.c: Remove static keywords to prevent folding.

* gcc.target/i386/funcspec-1.c: Remove static keywords to prevent
	folding.

From-SVN: r164283
This commit is contained in:
Jan Hubicka 2010-09-14 18:33:16 +02:00 committed by Jan Hubicka
parent 92df1544e9
commit 8780c9cbac
2 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,8 @@
* gfortran.dg/vect/fast-math-pr38968.f90: Add common to prevent
folding.
* gcc.target/i386/funcspec-1.c: Remove static keywords to prevent
folding.
2010-09-14 Jakub Jelinek <jakub@redhat.com>

View File

@ -12,9 +12,9 @@
#define SIZE 1024
#endif
static float a[SIZE] __attribute__((__aligned__(16)));
static float b[SIZE] __attribute__((__aligned__(16)));
static float c[SIZE] __attribute__((__aligned__(16)));
float a[SIZE] __attribute__((__aligned__(16)));
float b[SIZE] __attribute__((__aligned__(16)));
float c[SIZE] __attribute__((__aligned__(16)));
void sse_addnums (void) __attribute__ ((__target__ ("sse2")));