view tests/t08.good @ 205:dd0d2bfe4962

Recognize __aarch64__ and __riscv__. __aarch64__ was sent in simultaneously by several people at once, which was a little freaky, but whatever.
author David A. Holland
date Mon, 21 Jan 2019 21:18:50 -0500
parents da557b87be61
children
line wrap: on
line source


int d =
0
;
int e =
1
;
int f =
0
;
int
main()
{
	int a, b, c;
	a = 2 > 1 ? 0 : 0 ? 1 : 1;
	b = (2 > 1 ? 0 : 0) ? 1 : 1;
	c = 2 > 1 ? 0 : (0 ? 1 : 1);
	printf("%d %d %d\n", a, b, c);
	printf("%d %d %d\n", d, e, f);
	return 0;
}