view run/ieee_754_zerocomp_09.d @ 958:80e1b85295b3

DMD-0.154 review
author thomask
date Thu, 13 Apr 2006 07:34:32 +0000
parents e720ce827c1c
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

module dstress.run.ieee_754_zerocomp_09;

int main(){
	creal f1, f2;

	f1=0.0L+0.0Li;
	f2=-f1;
	if(f1 != f2){
		assert(0);
	}

	f1=0.0L-0.0Li;
	f2=-f1;
	if(f1 != f2){
		assert(0);
	}

	f1=-0.0L+0.0Li;
	f2=-f1;
	if(f1 != f2){
		assert(0);
	}

	f1=-0.0L-0.0Li;
	f2=-f1;
	if(f1 != f2){
		assert(0);
	}

	return 0;
}