blob: cc2c213974e220a7e1515d88e999a55b5a869d86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* PR tree-optimization/47967 */
extern void abort (void);
static void bar ();
void
foo ()
{
bar (1);
}
static void
bar (double i)
{
if (i)
abort ();
}
|