aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/ELFObjectFile.cpp
diff options
context:
space:
mode:
authorFabian Ritter <fabian.ritter@amd.com>2025-02-19 10:20:48 +0100
committerGitHub <noreply@github.com>2025-02-19 10:20:48 +0100
commit8615f9aaffd4337a33ea979f010c4d6410ba6125 (patch)
tree305591a6a6723135ac876a6315ecae5170e87cb1 /llvm/lib/Object/ELFObjectFile.cpp
parentcc539138acf742f53ef455147182a8de11980a02 (diff)
downloadllvm-8615f9aaffd4337a33ea979f010c4d6410ba6125.zip
llvm-8615f9aaffd4337a33ea979f010c4d6410ba6125.tar.gz
llvm-8615f9aaffd4337a33ea979f010c4d6410ba6125.tar.bz2
[AMDGPU] Replace gfx940 and gfx941 with gfx942 in llvm (#126763)
gfx940 and gfx941 are no longer supported. This is one of a series of PRs to remove them from the code base. This PR removes all non-documentation occurrences of gfx940/gfx941 from the llvm directory, and the remaining occurrences in clang. Documentation changes will follow. For SWDEV-512631
Diffstat (limited to 'llvm/lib/Object/ELFObjectFile.cpp')
-rw-r--r--llvm/lib/Object/ELFObjectFile.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Object/ELFObjectFile.cpp b/llvm/lib/Object/ELFObjectFile.cpp
index 2d3d70d..ac25d76 100644
--- a/llvm/lib/Object/ELFObjectFile.cpp
+++ b/llvm/lib/Object/ELFObjectFile.cpp
@@ -545,10 +545,6 @@ StringRef ELFObjectFileBase::getAMDGPUCPUName() const {
return "gfx90a";
case ELF::EF_AMDGPU_MACH_AMDGCN_GFX90C:
return "gfx90c";
- case ELF::EF_AMDGPU_MACH_AMDGCN_GFX940:
- return "gfx940";
- case ELF::EF_AMDGPU_MACH_AMDGCN_GFX941:
- return "gfx941";
case ELF::EF_AMDGPU_MACH_AMDGCN_GFX942:
return "gfx942";
case ELF::EF_AMDGPU_MACH_AMDGCN_GFX950: