[clang] [llvm] [clang][OpenMP][SPIR-V] Fix addrspace of globals and global constants (PR #134399)

Joseph Huber via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 4 10:52:52 PDT 2025


================
@@ -5384,6 +5384,11 @@ LangAS CodeGenModule::GetGlobalVarAddressSpace(const VarDecl *D) {
     LangAS AS;
     if (OpenMPRuntime->hasAllocateAttributeForGlobalVar(D, AS))
       return AS;
+    if (LangOpts.OpenMPIsTargetDevice && getTriple().isSPIRV())
----------------
jhuber6 wrote:

Is this really OpenMP specific? Sounds like a target info thing to me.

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


More information about the llvm-commits mailing list