shithub: scc

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

View raw version
#include <stdint.h>

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

	
	return 0;
}