shithub: scc

ref: 296d4035d72e6c58a6ec532468a73eaeda4e42b5
dir: /cc1/tests/test045.c/

View raw version
/*
name: TEST045
description: Basic test of initializers
error:
output:
G1	I	x
(
	#I5
)
F2	I	E
G3	F2	main
{
\
	j	L4	G1	#I5	=I
	r	#I1
L4
	r	#I0
}
*/



int x = 5;

int
main()
{
	if(x != 5) 
		return 1;
	return 0;
}