brintos

brintos / llvm-project-archived public Read only

0
0
Text · 434 B · 4dc3ab9 Raw
10 lines · plain
1// RUN: %clang_cc1 -triple spirv-unknown-vulkan1.3-vertex -finclude-default-header -ast-dump -o - %s | FileCheck %s2// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.8-vertex -finclude-default-header -ast-dump -o - %s | FileCheck %s3 4// CHECK:      ParmVarDecl {{.*}} a 'float4':'vector<float, 4>'5// CHECK-NEXT: HLSLParsedSemanticAttr {{.*}} "ABC" 06// CHECK-NEXT: HLSLAppliedSemanticAttr {{.*}} "ABC" 07 8void main(float4 a : ABC) {9}10