mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
5061263285
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2422 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
313 B
LLVM
16 lines
313 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: 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
|