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
This commit is contained in:
Rafael Espindola 2014-03-12 21:20:42 +00:00
parent 3b06b73035
commit 9367c49f5d

View File

@ -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")