shithub: scc

ref: 1c9aa7e9dfda3ae749639a390e08515a71a01842
dir: /tests/execute/0107-bnot.c/

View raw version


int
main()
{
	int x;
	long long l;
	
	x = 0;
	l = 0;
	
	x = ~x;
	if (x != 0xffffffff)
		return 1;
	
	l = ~l;
	if (x != 0xffffffffffffffff)
		return 2;

	
	return 0;
}