annotate run/i/is_12_H.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 5224177dd804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
912
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
1 // $HeadURL$
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
2 // $Date$
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
3 // $Author$
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
4
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
5 // @author@ <sean@f4.ca>
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
6 // @date@ 2006-03-10
1319
81222734adf3 sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 912
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=31
912
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
8
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
9 module dstress.run.i.is_12_H;
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
10
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
11 void delegate() T;
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
12
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
13 int main(){
1440
5224177dd804 r7388@birke: tk | 2007-03-29 15:55:00 +0200
thomask
parents: 1319
diff changeset
14 static if(!is(typeof(T) == delegate)){
5224177dd804 r7388@birke: tk | 2007-03-29 15:55:00 +0200
thomask
parents: 1319
diff changeset
15 static assert(0);
912
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
16 }
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
17
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
18 return 0;
6b0b46bab6de <sean@f4.ca>
thomask
parents:
diff changeset
19 }