annotate norun/throw_04.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 db4b6169a99d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
382
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
1 // $HeadURL$
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
2 // $Date$
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
3 // $Author$
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
4
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
5 module dstress.norun.throw_04;
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
6
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
7 static ~this(){
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
8 throw new Exception("Message\n");
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
9 }
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
10
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
11 int main(){
ab87341fc73f module destructor sequence for vital ( extern(C) _d_... ) modules 1/2
thomask
parents:
diff changeset
12 return 0;
432
db4b6169a99d 1) implemented checkRuntimeErrorMessage
thomask
parents: 382
diff changeset
13 }