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: FunctionDecl {{.*}} main 'uint ()'5// CHECK: HLSLParsedSemanticAttr {{.*}} "ABC" 06// CHECK: HLSLAppliedSemanticAttr {{.*}} "ABC" 07uint main() : ABC {8 return 0;9}10