annotate run/complex_01.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
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 }