[clang] [HLSL] Split out resource class data from resource attribute (PR #98419)
Justin Bogner via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 11 12:47:47 PDT 2024
================
@@ -0,0 +1,38 @@
+// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.0-compute -x hlsl -ast-dump -o - %s | FileCheck %s
+
+
+// CHECK: -HLSLResourceClassAttr 0x{{[0-9a-f]+}} <<invalid sloc>> SRV
+struct [[hlsl::resource_class(SRV)]] Eg1 {
----------------
bogner wrote:
Ah, I hadn't noticed the "struct" subject on the attr definition. It's probably ok for now, but it'll definitely need to change.
https://github.com/llvm/llvm-project/pull/98419
More information about the cfe-commits
mailing list