21 lines · plain
1; RUN: llc < %s -mtriple=r600-- -mcpu=redwood | FileCheck %s2 3; This tests for a bug in the SelectionDAG where custom lowered truncated4; vector stores at the end of a basic block were not being added to the5; LegalizedNodes list, which triggered an assertion failure.6 7; CHECK-LABEL: {{^}}test:8; CHECK: MEM_RAT_CACHELESS STORE_RAW9define amdgpu_kernel void @test(ptr addrspace(1) %out, i32 %cond, <4 x i8> %in) {10entry:11 %0 = icmp eq i32 %cond, 012 br i1 %0, label %if, label %done13 14if:15 store <4 x i8> %in, ptr addrspace(1) %out16 br label %done17 18done:19 ret void20}21