[clang] [Clang/AMDGPU] Zero sized arrays not allowed in HIP device code. (PR #113470)

Eli Friedman via cfe-commits cfe-commits at lists.llvm.org
Thu Nov 14 14:20:18 PST 2024


================
@@ -8732,6 +8732,18 @@ void Sema::CheckVariableDeclarationType(VarDecl *NewVD) {
     }
   }
 
+  // zero sized static arrays are not allowed in HIP device functions
+  if (getLangOpts().HIP &&
+      DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl())) {
----------------
efriedma-quic wrote:

The code, in its current state, *will* diagnose on host.  (The testcase doesn't show this because it only runs with `-fcuda-is-device`.)

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


More information about the cfe-commits mailing list