1; RUN: llc -mtriple=amdgcn--amdpal -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s 2; RUN: llc -mtriple=amdgcn--amdpal -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s 3 4; GCN-LABEL: {{^}}ls_amdpal: 5; GCN: .amdgpu_pal_metadata 6; GCN-NEXT: --- 7; GCN-NEXT: amdpal.pipelines: 8; GCN-NEXT: - .hardware_stages: 9; GCN-NEXT: .ls: 10; GCN-NEXT: .entry_point_symbol: ls_amdpal 11; GCN-NEXT: .scratch_memory_size: 0 12; GCN: .registers: 13; GCN-NEXT: '0x2d4a (SPI_SHADER_PGM_RSRC1_LS)': 0 14; GCN-NEXT: '0x2d4b (SPI_SHADER_PGM_RSRC2_LS)': 0 15; GCN-NEXT: ... 16; GCN-NEXT: .end_amdgpu_pal_metadata 17define amdgpu_ls half @ls_amdpal(half %arg0) { 18 %add = fadd half %arg0, 1.0 19 ret half %add 20} 21