blob: 2126992e1d3b84b2839a599d909bbd5b6f732e47 [file] [log] [blame]
Chris Lattner57232c52002-03-08 18:41:11 +00001; Method arguments were being checked for collisions at the global scope before
2; the method object was created by the parser. Because of this, false collisions
3; could occur that would cause the following error message to be produced:
4;
5; Redefinition of value named 'X' in the 'int *' type plane!
6;
7; Fixed by delaying binding of variable names until _after_ the method symtab is
8; created.
9;
10
11%X = global int 4
12
13declare int "xxx"(int * %X)
14
15implementation
16