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:
parent
92df1544e9
commit
8780c9cbac
@ -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")));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user