annotate run/bug_e2ir_299_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 6e4063f99377
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
211
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
1 // $HeadURL$
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
2 // $Date$
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
3 // $Author$
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
4
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
5 // @author@ h3r3tic <foo@bar.baz>
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
6 // @date@ 2004-12-24
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
7 // @uri@ news:cqi3v3$r2o$1@digitaldaemon.com
1487
6e4063f99377 changed nntp: URLs to http: URLs
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2601
211
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
9
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
10 module dstress.run.bug_e2ir_299_B;
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
11
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
12 int main(){
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
13 void foo() {}
830
726e10340496 added DMD-0.146 results
thomask
parents: 351
diff changeset
14 auto a = delegate void() { foo(); };
211
8695916b11c3 e2ir.c 229
thomask
parents:
diff changeset
15 return 0;
351
9cf29a72bdaf delegate/function - nested functions
thomask
parents: 211
diff changeset
16 }