blob: 482c39b203b727f2709b0455322e1ca2e05b4185 (
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
28
29
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-phiopt1-details -fdump-tree-optimized" } */
/* PR tree-optimization/112418 */
/* This is factor_op_phi-1.c but with statements swapped in the inner if. */
int f(int a, int b, int d, int e)
{
int c;
if (a < 0)
{
c = d > 0 ? d : -d;
a = -a;
}
else
{
c = e > 0 ? e : -e;
a = a;
}
return a + c;
}
/* ABS <d> should be able to pull out of the if statement early on in phiopt1. */
/* { dg-final { scan-tree-dump "changed to factor operation out from " "phiopt1" } } */
/* { dg-final { scan-tree-dump-times "if " 1 "phiopt1" } } */
/* { dg-final { scan-tree-dump-times "ABS_EXPR " 1 "phiopt1" } } */
/* { dg-final { scan-tree-dump-times "if " 1 "optimized" } } */
/* { dg-final { scan-tree-dump-times "ABS_EXPR " 1 "optimized" } } */
|