annotate nocompile/array_initialization_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 d3a3e0c251d8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
1 // $HeadURL$
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
2 // $Date$
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
3 // $Author$
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
4
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
5 // @author@ Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
6 // @date@ 2004-11-30
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
7 // @uri@ news:cohvnb$1eil$1@digitaldaemon.com
1384
d3a3e0c251d8 nntp: -> http:
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2383
165
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
9
756
9a121126b077 major "Torture" review
thomask
parents: 338
diff changeset
10 // __DSTRESS_ELINE__ 19
338
1f6cf5ccfbc9 1) updated rules to dmd-0.119
thomask
parents: 165
diff changeset
11
165
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
12 module dstress.nocompile.array_initialization_04;
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
13
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
14 void test(size_t size){
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
15 }
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
16
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
17 int main(){
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
18 for (int t=0; t<33; t++){
870
38ea1bb385b6 bit -> bool and __DSTRESS_TORTURE_BLOCK__ fixes
thomask
parents: 756
diff changeset
19 test((bool[t]).sizeof);
165
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
20 }
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
21 return 0;
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
22 }
67b55a6891a1 Lionello Lunesu <lionello.lunesu@crystalinter.remove.com>
thomask
parents:
diff changeset
23