mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
16e190fb8b
llvm-svn: 57976
17 lines
485 B
OCaml
17 lines
485 B
OCaml
(* RUN: %ocamlc -warn-error A llvm.cma llvm_bitwriter.cma %s -o %t 2> /dev/null
|
|
* 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 test x = if not x then exit 1 else ()
|
|
|
|
let _ =
|
|
let m = Llvm.create_module "ocaml_test_module" in
|
|
|
|
ignore (Llvm.define_type_name "caml_int_ty" Llvm.i32_type m);
|
|
|
|
test (Llvm_bitwriter.write_bitcode_file m Sys.argv.(1))
|