blob: c25d6ff5f05b59be7796253a12c9ec755953dc60 [file] [log] [blame]
Chris Lattnerdf006052002-03-08 19:10:09 +00001; Another name collision problem. Here the problem was that if a forward
2; declaration for a method was found, that this would cause spurious conflicts
3; to be detected between locals and globals.
4;
5%Var = uninitialized global int
6
7declare void "foo"()
8
9implementation
10
11void "foo"()
12begin
13 %Var = alloca int ; Conflict with global var
14 ret void
15end
16