annotate run/bug_constfold_575_Q.d @ 482:64666b604c01

cfloat.min > cfloat.max David L. Davis <SpottedTiger@yahoo.com> 2005-04-24 news:d4deen$1j8c$1@digitaldaemon.com
author thomask
date Mon, 25 Apr 2005 06:16:43 +0000
parents
children b8c0195059d9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
482
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
1 // $HeadURL$
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
2 // $Date$
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
3 // $Author$
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
4
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
5 // @author@ David L. Davis <SpottedTiger@yahoo.com>
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
6 // @date@ 2005-04-24
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
7 // @uri@ news:d4deen$1j8c$1@digitaldaemon.com
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
8
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
9 module dstress.run.bug_constfold_575_Q;
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
10
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
11 int main(){
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
12 ireal a=ireal.min;
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
13 ireal b=ireal.max;
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
14 if (a > b){
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
15 assert(0);
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
16 }
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
17 return 0;
64666b604c01 cfloat.min > cfloat.max
thomask
parents:
diff changeset
18 }