summaryrefslogtreecommitdiffstats
path: root/test/Assembler/2002-03-08-NameCollision.ll
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-02-14 07:57:12 +0000
committerTanya Lattner <tonic@nondot.org>2008-02-14 07:57:12 +0000
commit6e9bceea976a993dbc6a543c2135980df7616b97 (patch)
treef929dabf6d10ad6d73d324f711989b2ad40ddcbb /test/Assembler/2002-03-08-NameCollision.ll
parente8b7ccf0c9a06831266d690d0b10ead71e0a4ac5 (diff)
downloadexternal_llvm-6e9bceea976a993dbc6a543c2135980df7616b97.zip
external_llvm-6e9bceea976a993dbc6a543c2135980df7616b97.tar.gz
external_llvm-6e9bceea976a993dbc6a543c2135980df7616b97.tar.bz2
Remove llvm-upgrade
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47119 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler/2002-03-08-NameCollision.ll')
-rw-r--r--test/Assembler/2002-03-08-NameCollision.ll14
1 files changed, 5 insertions, 9 deletions
diff --git a/test/Assembler/2002-03-08-NameCollision.ll b/test/Assembler/2002-03-08-NameCollision.ll
index 8d0c4bd..e74332c 100644
--- a/test/Assembler/2002-03-08-NameCollision.ll
+++ b/test/Assembler/2002-03-08-NameCollision.ll
@@ -1,8 +1,8 @@
-; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
+; RUN: llvm-as < %s -o /dev/null -f
; Method arguments were being checked for collisions at the global scope before
-; the method object was created by the parser. Because of this, false
-; collisions could occur that would cause the following error message to be
+; the method object was created by the parser. Because of this, false
+; collisions could occur that would cause the following error message to be
; produced:
;
; Redefinition of value named 'X' in the 'int *' type plane!
@@ -10,10 +10,6 @@
; Fixed by delaying binding of variable names until _after_ the method symtab is
; created.
;
+@X = global i32 4 ; <i32*> [#uses=0]
-%X = global int 4
-
-declare int "xxx"(int * %X)
-
-implementation
-
+declare i32 @xxx(i32*)