mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 20:29:53 +00:00
Trying r45451 again, but this time warning-free on 3.10.x.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45452 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
309298955a
commit
a9d059693b
@ -37,6 +37,9 @@ static void llvm_raise(value Prototype, char *Message) {
|
|||||||
|
|
||||||
raise_with_arg(Prototype, CamlMessage);
|
raise_with_arg(Prototype, CamlMessage);
|
||||||
abort(); /* NOTREACHED */
|
abort(); /* NOTREACHED */
|
||||||
|
#ifdef CAMLnoreturn
|
||||||
|
CAMLnoreturn; /* Silences warnings, but is missing in some versions. */
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,6 +43,9 @@ static void llvm_raise(value Prototype, char *Message) {
|
|||||||
|
|
||||||
raise_with_arg(Prototype, CamlMessage);
|
raise_with_arg(Prototype, CamlMessage);
|
||||||
abort(); /* NOTREACHED */
|
abort(); /* NOTREACHED */
|
||||||
|
#ifdef CAMLnoreturn
|
||||||
|
CAMLnoreturn; /* Silences warnings, but is missing in some versions. */
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -45,6 +45,9 @@ static void llvm_raise(value Prototype, char *Message) {
|
|||||||
|
|
||||||
raise_with_arg(Prototype, CamlMessage);
|
raise_with_arg(Prototype, CamlMessage);
|
||||||
abort(); /* NOTREACHED */
|
abort(); /* NOTREACHED */
|
||||||
|
#ifdef CAMLnoreturn
|
||||||
|
CAMLnoreturn; /* Silences warnings, but is missing in some versions. */
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user