[clang] [llvm] Implement resource binding type prefix mismatch errors (PR #87578)

Justin Bogner via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 24 12:35:51 PDT 2024


================
@@ -0,0 +1,74 @@
+// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -x hlsl -o - -fsyntax-only %s -verify
+
+// the below will cause an llvm unreachable, because RWBuffers don't have resource attributes yet
+// expected-error at +1  {{invalid register name prefix 'b' for register resource type 'RWBuffer' (expected 'u')}}
+RWBuffer<int> a : register(b2, space1);
+
+// the below will cause an llvm unreachable, because RWBuffers don't have resource attributes yet
----------------
bogner wrote:

This comment is still incorrect.

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


More information about the llvm-commits mailing list