annotate run/b/bug_recog_2083_C.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 8732ccec11b2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1490
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
1 // $HeadURL$
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
2 // $Date$
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
3 // $Author$
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
4
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
5 // @author@ Geert Mulders <g.c.w.m.mulders@phys.uu.nl>
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
6 // @date@ 2007-04-16
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
7 // @uri@ news:f001t0$47n$1@digitalmars.com
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
8 // @desc@ Bug in GDC?
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
9
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
10 module dstress.run.b.bug_recog_2083_C;
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
11
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
12 int main(char[][] args){
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
13 float temp = args.length;
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
14 temp = !temp;
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
15
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
16 if(0.0 == temp){
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
17 return 0;
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
18 }
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
19 }
8732ccec11b2 Bug in GDC?
thomask
parents:
diff changeset
20