comparison gcc/testsuite/gcc.dg/pr83034.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* PR debug/83034 */
2 /* { dg-do compile } */
3 /* { dg-options "-funroll-loops -Ofast -g" } */
4
5 __attribute__((__simd__)) float expf (float);
6
7 void
8 foo (float *a, int x)
9 {
10 for (; x; x++)
11 a[x] = expf (x);
12 }