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-03-28-UninitializedVal.ll

14 lines
199 B
LLVM
Raw Normal View History

; 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