annotate nocompile/c/continue_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 b6f10a770c3b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
642
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
1 // $HeadURL$
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
2 // $Date$
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
3 // $Author$
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
4
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
5 // @author@ Hiroshi Sakurai <Hiroshi_member@pathlink.com>
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
6 // @date@ 2005-08-27
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
7 // @uri@ news:dep4oc$8sq$1@digitaldaemon.com
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
8 // @uri@ http://f17.aaa.livedoor.jp/~labamba/?BugTrack%2F20
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
9
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 16
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
11
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
12 module dstress.nocompile.c.continue_02;
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
13
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
14 void main(){
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
15 label: foreach(char a; "123"){
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
16 continue label;
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
17 }
b6f10a770c3b Hiroshi Sakurai <Hiroshi_member@pathlink.com>
thomask
parents:
diff changeset
18 }