Commit 8780c9cb by Jan Hubicka Committed by Jan Hubicka

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

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

From-SVN: r164283
parent 92df1544
......@@ -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>
......
......@@ -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")));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment