comparison gcc/testsuite/gcc.dg/vect/pr83965-2.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 /* { dg-do compile } */
2 /* { dg-additional-options "-Ofast -ftrapv" } */
3
4 int c;
5 unsigned char d;
6 int e (unsigned char *f)
7 {
8 int g;
9 for (int a; a; a++)
10 {
11 for (int b = 0; b < 6; b++)
12 g += __builtin_abs (f[b] - d);
13 f += c;
14 }
15 return g;
16 }