PR sanitizer/65280
[official-gcc.git] / gcc / testsuite / gcc.dg / unroll-2.c
blob7c9495d0261e0a9df430697696d7664e923e94ac
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-cunrolli-details=stderr -fno-peel-loops -fno-tree-vrp -fdisable-tree-cunroll -fenable-tree-cunrolli" } */
4 unsigned a[100], b[100];
5 inline void bar()
7 a[10] = b[10];
10 int foo(void)
12 int i;
13 bar();
14 for (i = 0; i < 2; i++) /* { dg-message "note: loop with 3 iterations completely unrolled" } */
16 a[i]= b[i] + 1;
18 return 1;
21 int foo2(void)
23 int i;
24 for (i = 0; i < 2; i++) /* { dg-message "note: loop with 3 iterations completely unrolled" } */
26 a[i]= b[i] + 1;
28 return 1;
30 /* { dg-prune-output ".*" } */