1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:57:35 +00:00

LibELF: Rename the x86_64 machine type string to be less verbose

It looked a bit unsightly in the `readelf` output, this is much neater
while still remaining very unambiguous.
This commit is contained in:
Valtteri Koskivuori 2021-10-18 02:19:48 +03:00 committed by Andreas Kling
parent d1adf5bc5e
commit efbcfe0498

View file

@ -303,7 +303,7 @@ Optional<StringView> Image::object_machine_type_to_string(ElfW(Half) type)
case EM_MIPS:
return "MIPS R3000 Big-Endian only"sv;
case EM_X86_64:
return "Advanced Micro Devices X86-64"sv;
return "x86_64"sv;
default:
return {};
}