From 9367c49f5de071784c732bbafeb66bf6a56c040f Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 12 Mar 2014 21:20:42 +0000 Subject: [PATCH] Fix the ocaml test to not create a alias to a declaration. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203717 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Bindings/Ocaml/vmcore.ml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Bindings/Ocaml/vmcore.ml b/test/Bindings/Ocaml/vmcore.ml index 41cdb42fb67..f014116ffe8 100644 --- a/test/Bindings/Ocaml/vmcore.ml +++ b/test/Bindings/Ocaml/vmcore.ml @@ -581,7 +581,8 @@ let test_users () = let test_aliases () = (* CHECK: @alias = alias i32* @aliasee *) - let v = declare_global i32_type "aliasee" m in + let forty_two32 = const_int i32_type 42 in + let v = define_global "aliasee" forty_two32 m in ignore (add_alias m (pointer_type i32_type) v "alias")