annotate run/module_02.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 d3a3e0c251d8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
252
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
1 // $HeadURL$
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
2 // $Date$
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
3 // $Author$
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
4
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
5 // @author@ Thomas Kuehne <thomas@kuehne.thisisspam.cn>
283
916d1cb5d890 updated meta info for module tests
thomask
parents: 252
diff changeset
6 // @date@ 2005-02-12
916d1cb5d890 updated meta info for module tests
thomask
parents: 252
diff changeset
7 // @uri@ news:cujja4$5ri$1@digitaldaemon.com
1384
d3a3e0c251d8 nntp: -> http:
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2952
252
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
9
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
10 /*module dstress.run.module_02;*/
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
11
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
12 int i;
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
13
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
14 int main(){
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
15 assert(module_02.i==0);
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
16 module_02.i++;
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
17 assert(module_02.i==1);
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
18 return 0;
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
19 }
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
20