annotate run/long_01.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 80e1b85295b3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
374
f87ba6507260 added missing meta-data
thomask
parents: 313
diff changeset
1 // $HeadURL$
f87ba6507260 added missing meta-data
thomask
parents: 313
diff changeset
2 // $Date$
f87ba6507260 added missing meta-data
thomask
parents: 313
diff changeset
3 // $Author$
f87ba6507260 added missing meta-data
thomask
parents: 313
diff changeset
4
70
5f98d4a33d49 1) review of all test cases with unexpected results (except encoding and html/xml)
thomask
parents: 1
diff changeset
5 module dstress.run.long_01;
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
6
3269e4627918 init dstress
svnowner
parents:
diff changeset
7 int main(){
3269e4627918 init dstress
svnowner
parents:
diff changeset
8 long a;
958
80e1b85295b3 DMD-0.154 review
thomask
parents: 374
diff changeset
9 static assert(a.max == 0x7FFF_FFFF_FFFF_FFFFL);
80e1b85295b3 DMD-0.154 review
thomask
parents: 374
diff changeset
10 static assert(a.min == 0x8000_0000_0000_0000L);
80e1b85295b3 DMD-0.154 review
thomask
parents: 374
diff changeset
11 static assert(a.init == 0);
80e1b85295b3 DMD-0.154 review
thomask
parents: 374
diff changeset
12 static assert(a.sizeof == 8);
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
13 return 0;
3269e4627918 init dstress
svnowner
parents:
diff changeset
14 }