OSDN Git Service

* gcc.target/i386/funcspec-1.c: Remove static keywords to prevent
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 14 Sep 2010 16:33:16 +0000 (16:33 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 14 Sep 2010 16:33:16 +0000 (16:33 +0000)
folding.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164283 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/funcspec-1.c

index 14904a8..e5936b3 100644 (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>
 
index 52420ec..bd8e67d 100644 (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")));