brintos

brintos / llvm-project-archived public Read only

0
0
Text · 909 B · 31749da Raw
16 lines · plain
1; RUN: not --crash llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx600 -filetype=obj -filetype=null %s 2>&1 | FileCheck -check-prefix=ERROR %s2; RUN: not --crash llc -mtriple=amdgcn-mesa-mesa3d -mcpu=gfx600 -filetype=obj -filetype=null %s 2>&1 | FileCheck -check-prefix=ERROR %s3 4; RUN: llc -mtriple=amdgcn-amd-amdhsa -o - %s | FileCheck -check-prefix=HSA-DEFAULT %s5; RUN: not --crash llc -mtriple=amdgcn-mesa-mesa3d -mcpu=gfx600 -filetype=obj -filetype=null %s 2>&1 | FileCheck -check-prefix=ERROR %s6 7; Flat instructions should not select if the target device doesn't8; support them. The default device should be able to select for HSA.9 10; ERROR: LLVM ERROR: Cannot select: {{0x[0-9,a-f]+|t[0-9]+}}: i32,ch = load<(volatile load (s32) from %ir.flat.ptr.load)>11; HSA-DEFAULT: flat_load_dword12define amdgpu_kernel void @load_flat_i32(ptr %flat.ptr) {13  %load = load volatile i32, ptr %flat.ptr, align 414  ret void15}16