comparison gcc/testsuite/gcc.dg/fold-convminconv-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 "-O -fdump-tree-optimized" } */
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] = (x >= 255 ? 255 : x);
11 }
12 return x;
13 }
14
15 /* { dg-final { scan-tree-dump-not " = MIN_EXPR <x_\[0-9\]*" "optimized" } } */