annotate run/ptr_04.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 660f9196b52a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
168
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
1 // $HeadURL$
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
2 // $Date$
199
1a77f6d93b45 1) added websvn links
thomask
parents: 175
diff changeset
3 // $Author$
168
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
4
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
5 module dstress.run.ptr_04;
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
6
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
7 int main(){
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
8 Object[0] array;
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
9
1270
660f9196b52a partial review
thomask
parents: 570
diff changeset
10 if(!(array.ptr is null)){
660f9196b52a partial review
thomask
parents: 570
diff changeset
11 assert(0);
660f9196b52a partial review
thomask
parents: 570
diff changeset
12 }
168
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
13
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
14 return 0;
a9d16ec2b848 added basic ptr tests
thomask
parents:
diff changeset
15 }