annotate nocompile/ptr_07.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 32f7f8ce5e51
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
169
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
1 // $HeadURL$
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
2 // $Date$
199
1a77f6d93b45 1) added websvn links
thomask
parents: 169
diff changeset
3 // $Author$
169
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
4
374
f87ba6507260 added missing meta-data
thomask
parents: 199
diff changeset
5 // __DSTRESS_ELINE__ 12
f87ba6507260 added missing meta-data
thomask
parents: 199
diff changeset
6
169
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
7 module dstress.nocompile.ptr_07;
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
8
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
9 int main(){
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
10 Object** pointer;
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
11
570
32f7f8ce5e51 updated "===" -> "is" and "!==" to "!(...===...)"
thomask
parents: 374
diff changeset
12 assert(pointer.ptr is null);
169
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
13
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
14 return 0;
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
15 }