Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - c/kcc/tcond.c
There are no other files named tcond.c in the archive.
/* TCOND.C - Test conditional code generation
**	Just compile with -S
*/

int a;
tcond()
{
	if ((char)a) return 0;
	if ((void *)0) return 0;
	return 1;
}
tcondn()
{
	if ((void *)0) return 0;
	return 1;
}