llvm-6502/test/Transforms/Mem2Reg/2002-05-01-ShouldNotPromoteThisAlloca.ll
2006-12-02 04:23:10 +00:00

16 lines
333 B
LLVM

; This input caused the mem2reg pass to die because it was trying to promote
; the %r alloca, even though it is invalid to do so in this case!
;
; RUN: llvm-upgrade < %s | llvm-as | opt -mem2reg
implementation
void "test"()
begin
%r = alloca int ; <int*> [#uses=2]
store int 4, int* %r
store int* %r, int** null
ret void
end