1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/Mem2Reg/2002-05-01-ShouldNotPromoteThisAlloca.ll

16 lines
313 B
LLVM
Raw Normal View History

2002-05-01 17:33:12 +02:00
; 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: as < %s | 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