mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 14:17:59 +00:00
787a41926a
This way most code won't link this (substantially large) library, if compiled statically with LLVM. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223072 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
607 B
OCaml
22 lines
607 B
OCaml
(* RUN: cp %s %T/transform_utils.ml
|
|
* RUN: %ocamlc -g -warn-error A -package llvm.transform_utils -linkpkg %T/transform_utils.ml -o %t
|
|
* RUN: %t
|
|
* RUN: %ocamlopt -g -warn-error A -package llvm.transform_utils -linkpkg %T/transform_utils.ml -o %t
|
|
* RUN: %t
|
|
* 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 ()
|