Fix various compiler warnings in asmrun.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12128 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02master
parent
a775cb815b
commit
b5eec7890b
|
@ -209,7 +209,7 @@ void caml_array_bound_error(void)
|
|||
}
|
||||
|
||||
int caml_is_special_exception(value exn) {
|
||||
return exn == caml_exn_Match_failure
|
||||
|| exn == caml_exn_Assert_failure
|
||||
|| exn == caml_exn_Undefined_recursive_module;
|
||||
return exn == (value) caml_exn_Match_failure
|
||||
|| exn == (value) caml_exn_Assert_failure
|
||||
|| exn == (value) caml_exn_Undefined_recursive_module;
|
||||
}
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include "callback.h"
|
||||
#include "backtrace.h"
|
||||
#include "custom.h"
|
||||
#include "debugger.h"
|
||||
#include "fail.h"
|
||||
#include "freelist.h"
|
||||
#include "gc.h"
|
||||
|
|
Loading…
Reference in New Issue