[clang] [llvm] [clang][SPIR-V] Add support for AMDGCN flavoured SPIRV (PR #89796)
Alex Voicu via cfe-commits
cfe-commits at lists.llvm.org
Tue May 14 12:14:41 PDT 2024
================
@@ -6088,6 +6088,9 @@ RValue CodeGenFunction::EmitBuiltinExpr(const GlobalDecl GD, unsigned BuiltinID,
StringRef Prefix =
llvm::Triple::getArchTypePrefix(getTarget().getTriple().getArch());
if (!Prefix.empty()) {
+ if (Prefix == "spv" &&
+ getTarget().getTriple().getOS() == llvm::Triple::OSType::AMDHSA)
+ Prefix = "amdgcn";
----------------
AlexVlx wrote:
The second bit is actually a good catch, I had assumed there's no SPIRV builtins, however looking at it it seems a few exist, so it appears we'll need both. I'll rework this part, cheers!
https://github.com/llvm/llvm-project/pull/89796
More information about the cfe-commits
mailing list