comparison gcc/testsuite/gcc.dg/fold-condcmpconv-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fdump-tree-ifcvt" } */
3
4 int foo (unsigned short a[], unsigned int x)
5 {
6 unsigned int i;
7 for (i = 0; i < 1000; i++)
8 {
9 x = a[i];
10 a[i] = (unsigned short)(x >= 255 ? 255 : x);
11 } return x;
12 }
13
14 /* { dg-final { scan-tree-dump " = MIN_EXPR <" "ifcvt" } } */