blob: 8bd995a8ecbbb44c6d9367724d4421320e1b1d57 [file] [log] [blame]
Matt Arsenault5e740db2015-06-03 20:04:05 +00001; RUN: llc -mtriple=amdgcn-- -verify-machineinstrs -o - %s | FileCheck %s
Matthias Braunc1e029e2015-06-01 21:26:26 +00002; LiveRangeEdit::eliminateDeadDef did not update LiveInterval sub ranges
3; properly.
Matthias Braunc1e029e2015-06-01 21:26:26 +00004
Tom Stellard1ba52fe2015-06-04 01:20:04 +00005; Just make sure this test doesn't crash.
Matthias Braunc1e029e2015-06-01 21:26:26 +00006; CHECK-LABEL: foobar:
Matthias Braunc1e029e2015-06-01 21:26:26 +00007; CHECK: s_endpgm
Matthias Braunc1e029e2015-06-01 21:26:26 +00008define void @foobar() {
9 %v0 = icmp eq <4 x i32> undef, <i32 0, i32 1, i32 2, i32 3>
10 %v3 = sext <4 x i1> %v0 to <4 x i32>
11 %v4 = extractelement <4 x i32> %v3, i32 1
12 %v5 = icmp ne i32 %v4, 0
13 %v6 = select i1 %v5, i32 undef, i32 0
14 %v15 = insertelement <2 x i32> undef, i32 %v6, i32 1
15 store <2 x i32> %v15, <2 x i32> addrspace(1)* undef, align 8
16 ret void
17}
18
19declare double @llvm.fma.f64(double, double, double)