summaryrefslogtreecommitdiff
path: root/test/Feature/aliases.ll
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2007-04-28 13:45:00 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2007-04-28 13:45:00 +0000
commita80e1181b78183dc36ec6568559d38faa86981f0 (patch)
tree88ca9bd2f28f363e50add28297f6220ac8e09fc1 /test/Feature/aliases.ll
parent44b2c5098f5cf766b4eff43d9eb0d8a9a143e7d8 (diff)
downloadllvm-a80e1181b78183dc36ec6568559d38faa86981f0.tar.gz
llvm-a80e1181b78183dc36ec6568559d38faa86981f0.tar.bz2
llvm-a80e1181b78183dc36ec6568559d38faa86981f0.tar.xz
Implement review feedback. Aliasees can be either GlobalValue's or
bitcasts of them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36537 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature/aliases.ll')
-rw-r--r--test/Feature/aliases.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Feature/aliases.ll b/test/Feature/aliases.ll
index c099cc9080..fc5e7685ca 100644
--- a/test/Feature/aliases.ll
+++ b/test/Feature/aliases.ll
@@ -2,8 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-; XFAIL: *
-
@bar = external global i32
@foo1 = alias i32* @bar
@foo2 = alias i32* @bar
@@ -15,6 +13,8 @@ declare i32 @foo_f()
@bar_i = alias internal i32* @bar
+@A = alias bitcast (i32* @bar to i64*)
+
define i32 @test() {
entry:
%tmp = load i32* @foo1