blob: ea771c0ce12e933531516e62ad590f082eb674b1 (
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
30
31
|
/* { dg-do compile } */
/* { dg-options "-O2 -ftree-tail-merge -fdump-tree-pre" } */
struct S {
int i;
};
extern struct S foo (void);
extern int foo2 (void);
struct S s;
int bar (int c) {
int r;
if (c)
{
s = foo ();
r = foo2 ();
}
else
{
s = foo ();
r = foo2 ();
}
return r;
}
/* { dg-final { scan-tree-dump-times "foo \\(" 1 "pre"} } */
/* { dg-final { scan-tree-dump-times "foo2 \\(" 1 "pre"} } */
|