X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FAssembler%2F2002-03-08-NameCollision.ll;h=539dfd671988729d515a12d9383748d6e85b6e1b;hb=8cb8245cf117fc4a4f0a6549d9a773a12895550c;hp=8d0c4bddcfbfe282983a49c6690661992c1d019e;hpb=d7c2c2f753ae80257798fd25a879ec17df953c5b;p=oota-llvm.git diff --git a/test/Assembler/2002-03-08-NameCollision.ll b/test/Assembler/2002-03-08-NameCollision.ll index 8d0c4bddcfb..539dfd67198 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 ; [#uses=0] -%X = global int 4 - -declare int "xxx"(int * %X) - -implementation - +declare i32 @xxx(i32*)