summaryrefslogtreecommitdiffstats
path: root/llvm/test/Bindings/OCaml/transform_utils.ml
blob: f951a0d9c4af20a060c71d2308ef6b6b5da8edb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(* RUN: rm -rf %t && mkdir -p %t && cp %s %t/transform_utils.ml
 * RUN: %ocamlc -g -w +A -package llvm.transform_utils -linkpkg %t/transform_utils.ml -o %t/executable
 * RUN: %t/executable
 * RUN: %ocamlopt -g -w +A -package llvm.transform_utils -linkpkg %t/transform_utils.ml -o %t/executable
 * RUN: %t/executable
 * XFAIL: vg_leak
 *)

open Llvm
open Llvm_transform_utils

let context = global_context ()

let test_clone_module () =
  let m  = create_module context "mod" in
  let m' = clone_module m in
  if m == m' then failwith "m == m'";
  if string_of_llmodule m <> string_of_llmodule m' then failwith "string_of m <> m'"

let () =
  test_clone_module ()
OpenPOWER on IntegriCloud