annotate run/complex_01.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents b8c0195059d9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
1 // $HeadURL$
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
2 // $Date$
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
3 // $Author$
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
4
3269e4627918 init dstress
svnowner
parents:
diff changeset
5 // @author@ Ivan Senji <ivan.senji@public.srce.hr>
3269e4627918 init dstress
svnowner
parents:
diff changeset
6 // @date@ 2004-05-01
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 920
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=54
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
8
374
f87ba6507260 added missing meta-data
thomask
parents: 140
diff changeset
9 module dstress.run.complex_01;
f87ba6507260 added missing meta-data
thomask
parents: 140
diff changeset
10
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
11 int main(){
3269e4627918 init dstress
svnowner
parents:
diff changeset
12 creal C, Cj;
3269e4627918 init dstress
svnowner
parents:
diff changeset
13 real y, x;
3269e4627918 init dstress
svnowner
parents:
diff changeset
14
920
5511f9277078 testcase review
thomask
parents: 374
diff changeset
15 C = x + y * 1.0Li + Cj;
5511f9277078 testcase review
thomask
parents: 374
diff changeset
16 Cj = y * 1.0Li + C + x;
5511f9277078 testcase review
thomask
parents: 374
diff changeset
17 C = Cj + 1.0Li * y + x;
5511f9277078 testcase review
thomask
parents: 374
diff changeset
18 Cj = 1.0Li * y + x + C;
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
19
3269e4627918 init dstress
svnowner
parents:
diff changeset
20 return 0;
3269e4627918 init dstress
svnowner
parents:
diff changeset
21 }