mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-23 23:36:04 +00:00
12 lines
410 B
TableGen
12 lines
410 B
TableGen
![]() |
// RUN: not clang-tblgen -gen-clang-attr-parsed-attr-kinds -I%p/../../include %s -o - 2>&1 | FileCheck %s
|
||
|
|
||
|
include "clang/Basic/Attr.td"
|
||
|
|
||
|
// CHECK: error: HLSLAnnotation Attribute must be lower case.
|
||
|
def HLSLSV_FAKE: HLSLAnnotationAttr {
|
||
|
let Spellings = [HLSLAnnotation<"SV_Fake">];
|
||
|
let Subjects = SubjectList<[ParmVar, Field]>;
|
||
|
let LangOpts = [HLSL];
|
||
|
let Documentation = [HLSLSV_GroupThreadIDDocs];
|
||
|
}
|