annotate llvm/test/CodeGen/AMDGPU/amdpal-hs.ll @ 206:f17a3b42b08b
Added tag before-12 for changeset b7591485f4cd
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Mon, 07 Jun 2021 21:25:57 +0900 |
parents |
1d019706d866 |
children |
2e18cbf3894f |
rev |
line source |
150
|
1 ; RUN: llc -mtriple=amdgcn--amdpal -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=SI %s
|
|
2 ; RUN: llc -mtriple=amdgcn--amdpal -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=VI %s
|
|
3 ; RUN: llc -mtriple=amdgcn--amdpal -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=GFX9 -enable-var-scope %s
|
|
4
|
|
5 ; amdpal hull shader: check for 0x2d0a (SPI_SHADER_PGM_RSRC1_HS) in pal metadata
|
|
6 ; GCN-LABEL: {{^}}hs_amdpal:
|
|
7 ; GCN: .amd_amdgpu_pal_metadata{{.*}}0x2d0a,
|
|
8 define amdgpu_hs half @hs_amdpal(half %arg0) {
|
|
9 %add = fadd half %arg0, 1.0
|
|
10 ret half %add
|
|
11 }
|
|
12
|
|
13
|