annotate nocompile/v/volatile_03_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 c2111f61b5d0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
891
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
1 // $HeadURL$
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
2 // $Date$
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
3 // $Author$
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
4
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
5 // @author@ Thomas Kuehne <thomas-dloop@kuehne.cn>
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
6 // @date@ 2006-03-06
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
7 // @uri@ news:bug-20-4@http.d.puremagic.com/bugzilla/
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
8
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
9 // __DSTRESS_ELINE__
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
10
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
11 module dstress.nocompile.v.volatile_03_C;
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
12
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
13 int state = 3;
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
14
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
15 void main(){
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
16 int i;
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
17 volatile int i = state;
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
18 }
c2111f61b5d0 Thomas Kuehne <thomas-dloop@kuehne.cn>
thomask
parents:
diff changeset
19