[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
Wed Nov 20 15:30:27 PST 2024


================
@@ -8714,6 +8714,21 @@ void Sema::CheckVariableDeclarationType(VarDecl *NewVD) {
     }
   }
 
+  // zero sized static arrays are not allowed in HIP device functions
+  if (LangOpts.CUDAIsDevice && LangOpts.HIP) {
+    if (FunctionDecl *FD = getCurFunctionDecl();
+        FD &&
+        (FD->hasAttr<CUDADeviceAttr>() || FD->hasAttr<CUDAGlobalAttr>())) {
----------------
efriedma-quic wrote:

In that case, I guess the current version is fine.

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


More information about the cfe-commits mailing list