llvm-6502/test/Transforms/Mem2Reg/2002-03-28-UninitializedVal.ll
2002-03-28 18:21:05 +00:00

14 lines
199 B
LLVM

; Uninitialized values are not handled correctly.
;
; RUN: as < %s | opt -mem2reg
;
implementation
int "test"()
begin
%X = alloca int ; To be promoted
%Y = load int* %X
ret int %Y
end