brintos

brintos / llvm-project-archived public Read only

0
0
Text · 241 B · fe2d69c Raw
12 lines · plain
1; Uninitialized values are not handled correctly.2;3; RUN: opt < %s -passes=mem2reg -disable-output4;5 6define i32 @test() {7        ; To be promoted8	%X = alloca i32		; <ptr> [#uses=1]9	%Y = load i32, ptr %X		; <i32> [#uses=1]10	ret i32 %Y11}12