Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git] / test / Assembler / 2002-03-08-NameCollision.ll
blobb49789b2902d14970b1aed0f1d5570fd7fd439b8
1 ; RUN: llvm-as %s -o /dev/null
3 ; Method arguments were being checked for collisions at the global scope before
4 ; the method object was created by the parser.  Because of this, false
5 ; collisions could occur that would cause the following error message to be
6 ; produced:
8 ;    Redefinition of value named 'X' in the 'int *' type plane!
10 ; Fixed by delaying binding of variable names until _after_ the method symtab is
11 ; created.
13 @X = global i32 4               ; <i32*> [#uses=0]
15 declare i32 @xxx(i32*)