shithub: scc

ref: c65ba1f014232a19cd2b4d27f1a06dc18b9c4c2d
dir: /cc1/tests/test003.c/

View raw version
/*
name: TEST003
description: Select function to call inside ternary operator
output:
F1
G1	F1	foo
{
-
	y	#I2A
}
G2	F1	bar
{
-
	y	#I18
}
G3	F1	main
{
-
	y	G1	cI
}
*/

int
foo(void)
{
	return 42;
}

int
bar(void)
{
	return 24;
}

int
main(void)
{
	return (1 ? foo : bar)();
}