[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / llvm / test / Bindings / OCaml / analysis.ml
blobda3e662d62d1e5c9d944656d690e55b2d29473a1
1 (* RUN: rm -rf %t && mkdir -p %t && cp %s %t/analysis.ml
2 * RUN: %ocamlc -g -w +A -package llvm.analysis -linkpkg %t/analysis.ml -o %t/executable
3 * RUN: %t/executable
4 * RUN: %ocamlopt -g -w +A -package llvm.analysis -linkpkg %t/analysis.ml -o %t/executable
5 * RUN: %t/executable
6 * XFAIL: vg_leak
7 *)
9 open Llvm
10 open Llvm_analysis
12 (* Note that this takes a moment to link, so it's best to keep the number of
13 individual tests low. *)
15 let context = global_context ()
17 let test x = if not x then exit 1 else ()
19 let bomb msg =
20 prerr_endline msg;
21 exit 2
23 let _ =
24 let fty = function_type (void_type context) [| |] in
25 let m = create_module context "valid_m" in
26 let fn = define_function "valid_fn" fty m in
27 let at_entry = builder_at_end context (entry_block fn) in
28 ignore (build_ret_void at_entry);
31 (* Test that valid constructs verify. *)
32 begin match verify_module m with
33 Some msg -> bomb "valid module failed verification!"
34 | None -> ()
35 end;
37 if not (verify_function fn) then bomb "valid function failed verification!";
40 (* Test that invalid constructs do not verify.
41 A basic block can contain only one terminator instruction. *)
42 ignore (build_ret_void at_entry);
44 begin match verify_module m with
45 Some msg -> ()
46 | None -> bomb "invalid module passed verification!"
47 end;
49 if verify_function fn then bomb "invalid function passed verification!";
52 dispose_module m
54 (* Don't bother to test assert_valid_{module,function}. *)