[clang] [Clang/AMDGPU] Zero sized arrays not allowed in HIP device code. (PR #113470)
Vigneshwar Jayakumar via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 14 08:36:01 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())) {
----------------
VigneshwarJ wrote:
else it would be cleaner to go back to how I was checking previously as this is the only helper function I found that is closely related.
https://github.com/llvm/llvm-project/pull/113470
More information about the cfe-commits
mailing list