annotate complex/linking/b.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 23834ba9736a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
192
014844597bbd 1) updated results
thomask
parents:
diff changeset
1 // $HeadURL$
014844597bbd 1) updated results
thomask
parents:
diff changeset
2 // $Date$
014844597bbd 1) updated results
thomask
parents:
diff changeset
3 // $Author$
014844597bbd 1) updated results
thomask
parents:
diff changeset
4
725
5a0ed66a88d4 meta data cleanup
thomask
parents: 192
diff changeset
5 // @author@ Ben Hinkle <ben.hinkle@gmail.com>
192
014844597bbd 1) updated results
thomask
parents:
diff changeset
6 // @date@ 2004-12-07
014844597bbd 1) updated results
thomask
parents:
diff changeset
7 // @uri@ news:cp2vjj$1ljt$1@digitaldaemon.com
014844597bbd 1) updated results
thomask
parents:
diff changeset
8 // @url@ nntp://news.digitalmars.com/digitalmars.D.bugs
014844597bbd 1) updated results
thomask
parents:
diff changeset
9
1598
23834ba9736a Fixed typos in test cases. See D bug 2174.
Christian Kamm <kamm incasoftware de>
parents: 725
diff changeset
10 module /*dstress.*/ complex.linking.b;
192
014844597bbd 1) updated results
thomask
parents:
diff changeset
11
1598
23834ba9736a Fixed typos in test cases. See D bug 2174.
Christian Kamm <kamm incasoftware de>
parents: 725
diff changeset
12 import /*dstress.*/ complex.linking.a;
192
014844597bbd 1) updated results
thomask
parents:
diff changeset
13
014844597bbd 1) updated results
thomask
parents:
diff changeset
14 void functB() {
014844597bbd 1) updated results
thomask
parents:
diff changeset
15 StructA!(int)* x;
014844597bbd 1) updated results
thomask
parents:
diff changeset
16 x = new StructA!(int);
014844597bbd 1) updated results
thomask
parents:
diff changeset
17 x.set(10);
014844597bbd 1) updated results
thomask
parents:
diff changeset
18 }
014844597bbd 1) updated results
thomask
parents:
diff changeset
19