annotate run/o/opDivAssign_14.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 7e8e5013a030
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
528
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
1 // $HeadUR$
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
2 // $Date$
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
3 // $Author$
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
4
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
5 module dstress.run.o.opDivAssign_14;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
6
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
7 int main(){
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
8 ireal i=8.0Li;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
9 i /= 4.0L;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
10
1086
7e8e5013a030 gdc-0.19 review
thomask
parents: 528
diff changeset
11 if(i != 2.0Li){
7e8e5013a030 gdc-0.19 review
thomask
parents: 528
diff changeset
12 assert(0);
7e8e5013a030 gdc-0.19 review
thomask
parents: 528
diff changeset
13 }
528
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
14
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
15 return 0;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
16 }