annotate compile/extern_08.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 174de95adb17
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
151
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
1 // $HeadURL$
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
2 // $Date$
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
3 // $Author$
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
4
309
174de95adb17 extern(C++) is now documented
thomask
parents: 157
diff changeset
5 module dstress.compile.extern_05;
151
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
6
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
7 extern (C++) int test(char c);
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
8
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
9 int check(){
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
10 return test('a');
f50665879ed4 added extern(Windows/Pascal/C++) tests
thomask
parents:
diff changeset
11 }