[clang] [HLSL] Split out resource class data from resource attribute (PR #98419)

Damyan Pepper via cfe-commits cfe-commits at lists.llvm.org
Thu Jul 11 11:26:45 PDT 2024


================
@@ -0,0 +1,15 @@
+// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.0-compute -o - %s -verify
+
+// expected-error at +1{{'resource_class' attribute takes one argument}}
+struct [[hlsl::resource_class()]] Eg1 {
+  int i;  
+};
+
+Eg1 e1;
+
+// expected-error at +1{{invalid resource class 'gibberish' used; expected 'SRV', 'UAV', 'CBuffer', or 'Sampler'}}
----------------
damyanp wrote:

don't we get a different error now?

https://github.com/llvm/llvm-project/pull/98419


More information about the cfe-commits mailing list