2009-08-25 17:38:29 +02:00
|
|
|
; RUN: llvm-as %s -o /dev/null
|
2004-11-06 23:07:09 +01:00
|
|
|
|
2008-02-14 08:57:12 +01:00
|
|
|
; Another name collision problem. Here the problem was that if a forward
|
2002-03-08 20:10:09 +01:00
|
|
|
; declaration for a method was found, that this would cause spurious conflicts
|
|
|
|
; to be detected between locals and globals.
|
|
|
|
;
|
2008-02-14 08:57:12 +01:00
|
|
|
@Var = external global i32 ; <i32*> [#uses=0]
|
2002-03-08 20:10:09 +01:00
|
|
|
|
2008-02-14 08:57:12 +01:00
|
|
|
define void @foo() {
|
|
|
|
%Var = alloca i32 ; <i32*> [#uses=0]
|
2002-03-08 20:10:09 +01:00
|
|
|
ret void
|
2008-02-14 08:57:12 +01:00
|
|
|
}
|