blob: 1c107ac4c46a1c8cc331378dae75e0ca8a092091 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|