blob: d3d39df3b11fa8544c8ef8db9d73d229a6eb438c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
extern void link_error (void);
void
foo (int b)
{
int a;
a = b + 2;
a--;
a--;
if (a != b)
link_error ();
}
/* The comparison should be eliminated, there should be no reference
to link_error. */
/* { dg-final { scan-tree-dump-times "link_error" 0 "optimized"} } */
|