aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/treelang/compile/exit.tree
blob: fd12e3568f643a5eebf550470d216caf532a1cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do compile { xfail *-*-* } }
external_reference void exit (int code);

static int foo ();

foo
{
	automatic int bar = +1;
	bar = bar + +1;
	exit (0);  // Calling external references is currently broken.
	return bar;
}