add a new MCInstPrinter class, move the (trivial) MCDisassmbler ctor inline.
[llvm/avr.git] / test / Bindings / Ocaml / analysis.ml
blobe830106c11ffd44ba3971ee93512a9d2324b9a81
1 (* RUN: %ocamlopt -warn-error A llvm.cmxa llvm_analysis.cmxa %s -o %t
2 * RUN: ./%t %t.bc
3 *)
5 open Llvm
6 open Llvm_analysis
8 (* Note that this takes a moment to link, so it's best to keep the number of
9 individual tests low. *)
11 let context = global_context ()
13 let test x = if not x then exit 1 else ()
15 let bomb msg =
16 prerr_endline msg;
17 exit 2
19 let _ =
20 let fty = function_type (void_type context) [| |] in
21 let m = create_module context "valid_m" in
22 let fn = define_function "valid_fn" fty m in
23 let at_entry = builder_at_end context (entry_block fn) in
24 ignore (build_ret_void at_entry);
27 (* Test that valid constructs verify. *)
28 begin match verify_module m with
29 Some msg -> bomb "valid module failed verification!"
30 | None -> ()
31 end;
33 if not (verify_function fn) then bomb "valid function failed verification!";
36 (* Test that invalid constructs do not verify.
37 A basic block can contain only one terminator instruction. *)
38 ignore (build_ret_void at_entry);
40 begin match verify_module m with
41 Some msg -> ()
42 | None -> bomb "invalid module passed verification!"
43 end;
45 if verify_function fn then bomb "invalid function passed verification!";
48 dispose_module m
50 (* Don't bother to test assert_valid_{module,function}. *)