Files
linux-packaging-mono/external/llvm/test/CodeGen/X86/2012-07-16-LeaUndef.ll
Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

17 lines
351 B
LLVM

; RUN: llc < %s -mtriple=x86_64-- -mcpu=corei7
define void @autogen_SD2543() {
A:
%E83 = add i32 0, 1
%E820 = add i32 0, undef
br label %C
C:
%B908 = add i32 %E83, %E820
store i32 %B908, i32* undef
%Sl2391 = select i1 undef, i32 undef, i32 %E83
%Cmp3114 = icmp ne i32 %Sl2391, undef
br i1 %Cmp3114, label %C, label %G
G:
ret void
}