diff options
| author | Florian Mayer <fmayer@google.com> | 2024-08-07 14:00:46 -0700 |
|---|---|---|
| committer | Florian Mayer <fmayer@google.com> | 2024-08-07 14:00:46 -0700 |
| commit | 6eae899f9ddda73a6e15c21c08e3e87ddea95b9d (patch) | |
| tree | 2bed79061b5c434c4e3a0778101f1dede804c976 /llvm/lib/Object/ELFObjectFile.cpp | |
| parent | 5e8cc899c3fbf6c6ab5af3885c9bfda5ecbdcbb4 (diff) | |
| parent | a8f125feaf9720915d570bf957611775fc1b8bf5 (diff) | |
Created using spr 1.3.4
Diffstat (limited to 'llvm/lib/Object/ELFObjectFile.cpp')
| -rw-r--r-- | llvm/lib/Object/ELFObjectFile.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Object/ELFObjectFile.cpp b/llvm/lib/Object/ELFObjectFile.cpp index 53c3de06d118..f79c233d93fe 100644 --- a/llvm/lib/Object/ELFObjectFile.cpp +++ b/llvm/lib/Object/ELFObjectFile.cpp @@ -441,6 +441,8 @@ std::optional<StringRef> ELFObjectFileBase::tryGetCPUName() const { case ELF::EM_PPC: case ELF::EM_PPC64: return StringRef("future"); + case ELF::EM_BPF: + return StringRef("v4"); default: return std::nullopt; } |
