[MachineOutliner] Refactor iterating over Candidate's instructions (#78972)
[llvm-project.git] / llvm / test / Assembler / 2002-03-08-NameCollision.ll
blob109f195a21ad30351fac0b6ffba13dcf83a4a250
1 ; RUN: llvm-as %s -o /dev/null
2 ; RUN: verify-uselistorder %s
4 ; Method arguments were being checked for collisions at the global scope before
5 ; the method object was created by the parser.  Because of this, false
6 ; collisions could occur that would cause the following error message to be
7 ; produced:
9 ;    Redefinition of value named 'X' in the 'int *' type plane!
11 ; Fixed by delaying binding of variable names until _after_ the method symtab is
12 ; created.
14 @X = global i32 4               ; <ptr> [#uses=0]
16 declare i32 @xxx(ptr)