AsmParser: Reject alloca with function type
[oota-llvm.git] / test / Verifier / alias.ll
index d71a7cb2b6ea86909a159c9b0f18e4e9b39bc884..dd04ae05f6341e49ea8f92503e4c9b7d8727d9bf 100644 (file)
@@ -11,10 +11,6 @@ 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
@@ -25,7 +21,7 @@ declare void @f()
 
 
 @test3_a = global i32 42
-@test3_b = alias weak i32* @test3_a
+@test3_b = weak alias i32* @test3_a
 @test3_c = alias i32* @test3_b
 ; CHECK: Alias cannot point to a weak alias
 ; CHECK-NEXT: i32* @test3_c