diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/vect/no-vfa-vect-43.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/no-vfa-vect-43.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/vect/no-vfa-vect-43.c b/gcc/testsuite/gcc.dg/vect/no-vfa-vect-43.c index 258da2827f7..b64427f6d0b 100644 --- a/gcc/testsuite/gcc.dg/vect/no-vfa-vect-43.c +++ b/gcc/testsuite/gcc.dg/vect/no-vfa-vect-43.c @@ -5,6 +5,7 @@ #define N 256 +__attribute__ ((noinline)) void bar (float *pa, float *pb, float *pc) { int i; @@ -20,7 +21,7 @@ void bar (float *pa, float *pb, float *pc) } -int +__attribute__ ((noinline)) int main1 (float *pa) { int i; @@ -38,7 +39,7 @@ main1 (float *pa) return 0; } -int +__attribute__ ((noinline)) int main2 (float * pa) { int i; |