diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/vect/vect-outer-4l.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/vect-outer-4l.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/vect/vect-outer-4l.c b/gcc/testsuite/gcc.dg/vect/vect-outer-4l.c index ebd0ef38f70..cef37c42321 100644 --- a/gcc/testsuite/gcc.dg/vect/vect-outer-4l.c +++ b/gcc/testsuite/gcc.dg/vect/vect-outer-4l.c @@ -11,7 +11,7 @@ unsigned char arr[N]; /* Outer-loop vectorization. */ /* Not vectorized due to multiple-types in the inner-loop. */ -unsigned int +__attribute__ ((noinline)) unsigned int foo (){ int i,j; unsigned int diff; @@ -28,7 +28,7 @@ foo (){ return s; } -unsigned int +__attribute__ ((noinline)) unsigned int bar (int i, unsigned int diff, unsigned short *in) { int j; |