summaryrefslogtreecommitdiff
path: root/test/Feature/globalredefinition.ll
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-05 17:25:12 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-05 17:25:12 +0000
commitdfa4b1aab641046b5660379b25c24adee61ea7ce (patch)
tree556aa9533ea5b817d01ba7e0c0dccb0f88bd2e13 /test/Feature/globalredefinition.ll
parent4933af147aa7a5d67d58f4d0d375aebf6a8f33f2 (diff)
downloadllvm-dfa4b1aab641046b5660379b25c24adee61ea7ce.tar.gz
llvm-dfa4b1aab641046b5660379b25c24adee61ea7ce.tar.bz2
llvm-dfa4b1aab641046b5660379b25c24adee61ea7ce.tar.xz
For PR1077:
Split this test case into three cases. globalredefinition.ll just tests that a global can be forward referenced. globalredefinition2.ll tests that llvm-upgrade will warn about renaming duplicate global variables. globalredefinition3.ll tests that llvm-as will generate an error on duplicate global variables. This last test is currently XFAIL because the restriction is not implemented yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32910 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature/globalredefinition.ll')
-rw-r--r--test/Feature/globalredefinition.ll4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/Feature/globalredefinition.ll b/test/Feature/globalredefinition.ll
index e7b37eedc6..642c093d16 100644
--- a/test/Feature/globalredefinition.ll
+++ b/test/Feature/globalredefinition.ll
@@ -4,12 +4,8 @@
; Test forward references and redefinitions of globals
-%Y = global void()* %X
-
%A = global int* %B
%B = global int 7
-%B = global int 7
-
declare void %X()