aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/vrp19.c
blob: e4c884a85d18926ee0e34f5ddf81f1dc50fad801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* { dg-do compile } */
/* { dg-options "-fwrapv -O1 -ftree-vrp -fdump-tree-vrp1" } */

#include <limits.h>
extern void abort ();
extern void exit (int);

int f (int a) {
	if (a != INT_MIN) {
		a = a > 0 ? a : -a;
		if (a < 0)
		  return 1;
	}
	return 0;
}

int g (int b) {
	if (b != INT_MIN) {
		b = b > 0 ? b : -b;
		if (b >= 0)
		  return 0;
	}
	return 1;
}
/* { dg-final { scan-tree-dump "Folding predicate a_. < 0 to 0" "vrp1" } } */
/* { dg-final { scan-tree-dump "Folding predicate b_. >= 0 to 1" "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */