1 (* RUN: %ocamlopt -warn-error A llvm.cmxa llvm_scalar_opts.cmxa llvm_target.cmxa %s -o %t
4 (* Note: It takes several seconds for ocamlopt to link an executable with
5 libLLVMCore.a, so it's better to write a big test than a bunch of
12 let context = global_context
()
13 let void_type = Llvm.void_type context
15 (* Tiny unit test framework - really just to help find which line is busted *)
17 prerr_endline
(name ^
":");
21 (*===-- Fixture -----------------------------------------------------------===*)
23 let filename = Sys.argv
.(1)
24 let m = create_module
context filename
25 let mp = ModuleProvider.create
m
28 (*===-- Transforms --------------------------------------------------------===*)
30 let test_transforms () =
31 let (++) x f
= ignore
(f x
); x
in
33 let fty = function_type
void_type [| |] in
34 let fn = define_function
"fn" fty m in
35 ignore
(build_ret_void
(builder_at_end
context (entry_block
fn)));
37 let td = TargetData.create
(target_triple
m) in
39 ignore
(PassManager.create_function
mp
41 ++ add_instruction_combining
44 ++ add_cfg_simplification
45 ++ add_constant_propagation
46 ++ PassManager.initialize
47 ++ PassManager.run_function
fn
48 ++ PassManager.finalize
49 ++ PassManager.dispose
);
54 (*===-- Driver ------------------------------------------------------------===*)
57 suite "transforms" test_transforms;
58 ModuleProvider.dispose
mp