view run/o/opDiv_07_B.d @ 525:60bcfb2cf1e3

ifloat * ifloat => float
author thomask
date Wed, 11 May 2005 23:47:52 +0000
parents a8b982e594e7
children b8c0195059d9
line wrap: on
line source

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

// @author@	David Friedman <d3rdclsmail_a_@_t_earthlink_d_._t_net>
// @date@	2005-05-03
// @uri@	news:d595il$lqr$2@digitaldaemon.com

module dstress.run.o.opDiv_07_B;

int main(){
	float a = -1.0fi / 0.0fi;

	ifloat b = -1.0fi;
	ifloat c = 0.0fi;
	float d;

	void* X = &a;

	d = b/c;
	void* Y = &d;

	assert((cast(int*)X)[0]==(cast(int*)Y)[0]);
	return 0;
}