annotate compile/m/mixin_29_A.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 088bb4a67d95
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1415
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
1 // $HeadURL$
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
2 // $Date$
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
3 // $Author$
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
4
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
5 // @author@ Bob W <nospam@aol.com>
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
6 // @date@ 2007-01-27
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
7 // @uri@ http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
8 // @desc@ Re: DMD 1.004 release
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
9
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
10 module dstress.compile.m.mixin_29_A;
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
11
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
12 template Mix() {
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
13 int i;
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
14 }
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
15
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
16 struct Z {
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
17 union {
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
18 mixin Mix!();
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
19 }
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
20 }