1int foo(int a)
2{
3	void *label = a ? &&l1 : &&l2;
4	goto *label;
5l1:
6	return a;
7l2:
8	return 0;
9}
10
11/*
12 * check-name: cgoto02
13 * check-command: test-linearize -Wno-decl $file
14 *
15 * check-output-ignore
16 * check-output-returns: %arg1
17 */
18