[ARM] Fixup the creation of VPT blocks
[llvm-core.git] / test / CodeGen / AMDGPU / flat-error-unsupported-gpu-hsa.ll
blob25b21326d570a6a2ae90299018e3f8bd6cccb359
1 ; RUN: not llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx600 -filetype=obj -o /dev/null %s 2>&1 | FileCheck -check-prefix=ERROR %s
2 ; RUN: not llc -mtriple=amdgcn-mesa-mesa3d -mcpu=gfx600 -filetype=obj -o /dev/null %s 2>&1 | FileCheck -check-prefix=ERROR %s
4 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -o - %s | FileCheck -check-prefix=HSA-DEFAULT %s
5 ; RUN: not llc -mtriple=amdgcn-mesa-mesa3d -mcpu=gfx600 -filetype=obj -o /dev/null %s 2>&1 | FileCheck -check-prefix=ERROR %s
7 ; Flat instructions should not select if the target device doesn't
8 ; support them. The default device should be able to select for HSA.
10 ; ERROR: LLVM ERROR: Cannot select: {{0x[0-9,a-f]+|t[0-9]+}}: i32,ch = load<(volatile load 4 from %ir.flat.ptr.load)>
11 ; HSA-DEFAULT: flat_load_dword
12 define amdgpu_kernel void @load_flat_i32(i32* %flat.ptr) {
13   %load = load volatile i32, i32* %flat.ptr, align 4
14   ret void