llvm-project/llvm/test/Assembler/2002-03-08-NameCollision2.ll

14 lines
382 B
LLVM
Raw Normal View History

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