1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

New bug testcase

llvm-svn: 2422
This commit is contained in:
Chris Lattner 2002-05-01 15:33:12 +00:00
parent 453a66845a
commit 2d267a0074

View File

@ -0,0 +1,15 @@
; 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