2002-03-28 18:21:05 +00:00
|
|
|
; Uninitialized values are not handled correctly.
|
|
|
|
;
|
2003-09-16 15:29:54 +00:00
|
|
|
; RUN: llvm-as < %s | opt -mem2reg
|
2002-03-28 18:21:05 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
int "test"()
|
|
|
|
begin
|
|
|
|
%X = alloca int ; To be promoted
|
|
|
|
%Y = load int* %X
|
|
|
|
ret int %Y
|
|
|
|
end
|