Convert the uses of '|&' to use '2>&1 |' instead, which works on old
[oota-llvm.git] / test / Assembler / 2002-03-08-NameCollision.ll
index 8d0c4bddcfbfe282983a49c6690661992c1d019e..b49789b2902d14970b1aed0f1d5570fd7fd439b8 100644 (file)
@@ -1,8 +1,8 @@
-; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
+; RUN: llvm-as %s -o /dev/null
 
 ; 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!
 ; 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*)