[gnu.gcc.bug] bug001 with gcc1.36

rajeevc@oriley.intel.com (09/28/89)

/*
	no casting done in explicit casting expression
	prints : d=f2db93e d=f2db93e
	should print : d=f2db93e d=3e
*/
int c;
int  d;
main()
{
    c = (unsigned char) (d = 0xf2db93e);
	printf("\
			d=%x\n\
			c=%x\n\
			",
			d, c);
}