comparison gcc/testsuite/gcc.dg/tree-ssa/predcom-8.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-options "-O3 -fdump-tree-pcom-details" } */
3
4 int is_sorted(int *a, int n)
5 {
6 for (int i = 0; i < n - 1; i++)
7 if (a[i] > a[i + 1])
8 return 0;
9 return 1;
10 }
11
12 /* { dg-final { scan-tree-dump "Executing predictive commoning without unrolling" "pcom" } } */