blob: 1e0d5445877aa266776cf69662472314da1155c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* PR c/9530 */
/* Contributed by Volker Reichelt. */
/* Verify that the call to 'foo' is not turned
into a sibling call. */
void foo(float d);
float bar(float d);
float baz(float d)
{
foo(bar(d));
}
|