shithub: scc

ref: 0fb36627230e9c8defd681c61e4917a140fcc03f
dir: /tests/cc/execute/0031-relop.c/

View raw version
int
f()
{
	return 100;
}

int
main()
{
	if (f() > 1000)
		return 1;
	if (f() >= 1000)
		return 1;
	if (1000 < f())
		return 1;
	if (1000 <= f())
		return 1;
	if (1000 == f())
		return 1;
	if (100 != f())
		return 1;
	return 0;
}