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