forked from OSchip/llvm-project
Trying r45451 again, but this time warning-free on 3.10.x.
llvm-svn: 45452
This commit is contained in:
parent
8100a225c0
commit
86427bb2a9
|
@ -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
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue