annotate run/template_01.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 b8c0195059d9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
1 // $HeadURL$
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
2 // $Date$
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
3 // $Author$
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
4
3269e4627918 init dstress
svnowner
parents:
diff changeset
5 // @author@ Daniel Horn <hellcatv@hotmail.com>
3269e4627918 init dstress
svnowner
parents:
diff changeset
6 // @date@ 2004-05-01
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 374
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=50
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
8
374
f87ba6507260 added missing meta-data
thomask
parents: 140
diff changeset
9 module dstress.run.template_01;
f87ba6507260 added missing meta-data
thomask
parents: 140
diff changeset
10
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
11 template T(int size){
3269e4627918 init dstress
svnowner
parents:
diff changeset
12 int vec[size];
3269e4627918 init dstress
svnowner
parents:
diff changeset
13 }
3269e4627918 init dstress
svnowner
parents:
diff changeset
14
3269e4627918 init dstress
svnowner
parents:
diff changeset
15 int main(){
3269e4627918 init dstress
svnowner
parents:
diff changeset
16 int a = T!(4>1?4:1).vec[0];
3269e4627918 init dstress
svnowner
parents:
diff changeset
17 int b = T!(4==1?1:(1==1?4:(4>1?1:4))).vec[0];
3269e4627918 init dstress
svnowner
parents:
diff changeset
18 return 0;
3269e4627918 init dstress
svnowner
parents:
diff changeset
19 }