shithub: scc

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

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



int x = 5;

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