1; RUN: llc -mtriple=amdgcn--amdpal -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -enable-var-scope %s
2; RUN: llc -mtriple=amdgcn--amdpal -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -enable-var-scope %s
3; RUN: llc -mtriple=amdgcn--amdpal -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -enable-var-scope %s
4
5; GCN-LABEL: {{^}}cs_amdpal:
6; GCN:           .amdgpu_pal_metadata
7; GCN-NEXT: ---
8; GCN-NEXT: amdpal.pipelines:
9; GCN-NEXT:   - .hardware_stages:
10; GCN-NEXT:       .cs:
11; GCN-NEXT:         .entry_point:    cs_amdpal
12; GCN-NEXT:         .scratch_memory_size: 0
13; GCN:     .registers:
14; GCN-NEXT:       0x2e12 (COMPUTE_PGM_RSRC1):
15; GCN-NEXT:       0x2e13 (COMPUTE_PGM_RSRC2):
16; GCN-NEXT: ...
17; GCN-NEXT:         .end_amdgpu_pal_metadata
18define amdgpu_cs half @cs_amdpal(half %arg0) {
19  %add = fadd half %arg0, 1.0
20  ret half %add
21}
22