shithub: scc

ref: c48e71febf29a4600bc77c3e49390961bb718123
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;
}