annotate compile/o/opCmp_09_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 eac3a538961a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1312
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
1 // $HeadURL$
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
2 // $Date$
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
3 // $Author$
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
4
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
5 // @author@ Chris Sauls <ibisbasenji@gmail.com>
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
6 // @date@ 2006-12-30
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=772
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
8 // @desc@ [Issue 772] Bogus error using relation operator as static if expression within template
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
9
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
10 module dstress.compile.o.opCmp_09_A;
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
11
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
12 template Templ (ulong n) {
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
13 static if (n > 10_LU) {
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
14 static assert(0);
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
15 }
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
16 }
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
17
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
18 mixin Templ!(1_LU);
eac3a538961a [Issue 772] Bogus error using relation operator as static if expression within template
thomask
parents:
diff changeset
19