1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/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-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
}