1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Trying r45451 again, but this time warning-free on 3.10.x.

llvm-svn: 45452
This commit is contained in:
Gordon Henriksen 2007-12-30 18:12:41 +00:00
parent 28347a471e
commit 2d87c21eff
3 changed files with 9 additions and 0 deletions

View File

@ -37,6 +37,9 @@ static void llvm_raise(value Prototype, char *Message) {
raise_with_arg(Prototype, CamlMessage);
abort(); /* NOTREACHED */
#ifdef CAMLnoreturn
CAMLnoreturn; /* Silences warnings, but is missing in some versions. */
#endif
}

View File

@ -43,6 +43,9 @@ static void llvm_raise(value Prototype, char *Message) {
raise_with_arg(Prototype, CamlMessage);
abort(); /* NOTREACHED */
#ifdef CAMLnoreturn
CAMLnoreturn; /* Silences warnings, but is missing in some versions. */
#endif
}

View File

@ -45,6 +45,9 @@ static void llvm_raise(value Prototype, char *Message) {
raise_with_arg(Prototype, CamlMessage);
abort(); /* NOTREACHED */
#ifdef CAMLnoreturn
CAMLnoreturn; /* Silences warnings, but is missing in some versions. */
#endif
}