aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/treelang/compile/extrafunc.tree
blob: 6682a118a04d969f5ec37355252af89a7fbc362d (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
// { dg-do compile }
// { dg-options "-O2 -fdump-tree-optimized -Wunused-function" }
// Check to see that unused functions get removed at -O2 and
// above.
static int foo (int bar);
static int baz (int aaa);
external_definition int ext (int bbb);

foo
{
	return bar;
}

baz // { dg-warning "defined but not used" }
{
	return foo (aaa);
}

ext
{
	return foo (bbb);
}

// { dg-final { scan-tree-dump-not "baz" "optimized" } }