mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
1ea899cc86
There's a bug with ocamlc that uses "char*" instead of "const char*" for global string variables. This causes g++ to be very noisy when linking ocamlc programs. That's why the ocaml test used to cat to /dev/null. ocamlopt doesn't have this problem, so we can get rid of the >/dev/null, which may obscure some problems. llvm-svn: 80968
19 lines
532 B
OCaml
19 lines
532 B
OCaml
(* RUN: %ocamlopt -warn-error A llvm.cmxa llvm_bitwriter.cmxa %s -o %t
|
|
* RUN: ./%t %t.bc
|
|
* RUN: llvm-dis < %t.bc | grep caml_int_ty
|
|
*)
|
|
|
|
(* Note that this takes a moment to link, so it's best to keep the number of
|
|
individual tests low. *)
|
|
|
|
let context = Llvm.global_context ()
|
|
|
|
let test x = if not x then exit 1 else ()
|
|
|
|
let _ =
|
|
let m = Llvm.create_module context "ocaml_test_module" in
|
|
|
|
ignore (Llvm.define_type_name "caml_int_ty" (Llvm.i32_type context) m);
|
|
|
|
test (Llvm_bitwriter.write_bitcode_file m Sys.argv.(1))
|