1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

[CodeView] Add missing cases for new enum values

This fixes warnings while building llvm-pdbutil after
d20b013b490e0603ba21b5ccff966d7e11025775.
This commit is contained in:
Martin Storsjö 2021-07-07 22:15:33 +03:00
parent 5f3a753cf4
commit cb69439440

View File

@ -261,6 +261,9 @@ static std::string formatMachineType(CPUType Cpu) {
RETURN_CASE(CPUType, ARM_WMMX, "arm wmmx");
RETURN_CASE(CPUType, ARM7, "arm 7");
RETURN_CASE(CPUType, ARM64, "arm64");
RETURN_CASE(CPUType, ARM64EC, "arm64ec");
RETURN_CASE(CPUType, ARM64X, "arm64x");
RETURN_CASE(CPUType, HybridX86ARM64, "hybrid x86 arm64");
RETURN_CASE(CPUType, Omni, "omni");
RETURN_CASE(CPUType, Ia64, "intel itanium ia64");
RETURN_CASE(CPUType, Ia64_2, "intel itanium ia64 2");