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; RUN: llc -mtriple=amdgcn--amdpal -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -enable-var-scope %s 4 5; GCN-LABEL: {{^}}vs_amdpal: 6; GCN: .amdgpu_pal_metadata 7; GCN-NEXT: --- 8; GCN-NEXT: amdpal.pipelines: 9; GCN-NEXT: - .hardware_stages: 10; GCN-NEXT: .vs: 11; GCN-NEXT: .entry_point_symbol: vs_amdpal 12; GCN-NEXT: .scratch_memory_size: 0 13; GCN: .registers: 14; GCN-NEXT: '0x2c4a (SPI_SHADER_PGM_RSRC1_VS)': 0 15; GCN-NEXT: '0x2c4b (SPI_SHADER_PGM_RSRC2_VS)': 0 16; GCN-NEXT: ... 17; GCN-NEXT: .end_amdgpu_pal_metadata 18define amdgpu_vs half @vs_amdpal(half %arg0) { 19 %add = fadd half %arg0, 1.0 20 ret half %add 21} 22