summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2014-06-12 01:46:54 +0000
committerBob Wilson <bob.wilson@apple.com>2014-06-12 01:46:54 +0000
commit23475569d5d6f3ca7cc745dddb86c16f126e3efc (patch)
tree44ed8c60d7ea60002f7aa8fb1a794b83e503d89c /test
parent9ee34311f3a9f6d49023bc74f6028133f90e1d4f (diff)
downloadllvm-23475569d5d6f3ca7cc745dddb86c16f126e3efc.tar.gz
llvm-23475569d5d6f3ca7cc745dddb86c16f126e3efc.tar.bz2
llvm-23475569d5d6f3ca7cc745dddb86c16f126e3efc.tar.xz
Fix verifier for GlobalAliases to avoid recursing into global initializers.
The verifier follows GlobalAlias operands so that it can detect cycles of alias definitions. It was doing this in a way that caused it to also recurse through initializers for the GlobalValue aliasees, and it would fail when an initializer refers to a global that is a declaration and not a definition. This patch causes it to stop recursing when it hits a global definition. <rdar://problem/17277451> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Verifier/alias.ll4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Verifier/alias.ll b/test/Verifier/alias.ll
index ff02a37bab..d71a7cb2b6 100644
--- a/test/Verifier/alias.ll
+++ b/test/Verifier/alias.ll
@@ -11,6 +11,10 @@ declare void @f()
; CHECK: Alias must point to a definition
; CHECK-NEXT: @ga
+; References to a global declaration from an initializer are OK.
+@gptr = global i32* @g
+@gptr_a = alias i32** @gptr
+; CHECK-NOT: Alias must point to a definition
@test2_a = alias i32* @test2_b
@test2_b = alias i32* @test2_a