Skip to content

Commit

Permalink
Trying r45451 again, but this time warning-free on 3.10.x.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45452 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Gordon Henriksen committed Dec 30, 2007
1 parent 3092989 commit a9d0596
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bindings/ocaml/bitreader/bitreader_ocaml.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
}


Expand Down
3 changes: 3 additions & 0 deletions bindings/ocaml/executionengine/executionengine_ocaml.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
}


Expand Down
3 changes: 3 additions & 0 deletions bindings/ocaml/llvm/llvm_ocaml.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
}


Expand Down

0 comments on commit a9d0596

Please sign in to comment.