shithub: scc

ref: bf0048dd143ca9fcd3ba58b6e3c380e8a7e30726
dir: /cc1/tests/test045.c/

View raw version
/*
name: TEST045
description: Basic test of initializers
error:
output:
G1	I	"x	(
	#I5
)
G3	I	F	"main
{
\
	y	L4	G1	#I5	=I
	h	#I1
L4
	h	#I0
}
*/



int x = 5;

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