shithub: scc

ref: 022532e3e74a94ff9a194378c5a9f7a4904d82d3
dir: /cc1/tests/test005.c/

View raw version
/* See LICENSE file for copyright and license details. */

/*
name: TEST005
description: Test unary integer operations
error:
output:
G2	I	F	"main
{
\
A3	I	"x
	A3	#I3	:I
	A3	A3	#I0	=I	:I
	A3	A3	#I0	=I	:I
	A3	A3	~I	:I
	A3	A3	_I	:I
	y	L4	A3	#I2	=I
	h	#I1
L4
	h	#I0
}
*/


int
main()
{
	int x;

	x = 3;
	x = !x; //  0
	x = !x; //  1
	x = ~x; // -1
	x = -x; //  2
	if(x != 2)
		return 1;
	return 0;
}