mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-01 16:02:53 +00:00
Userland: Remove i686 support
This commit is contained in:
parent
55f17fff36
commit
445b5e1e94
Notes:
sideshowbarker
2024-07-18 02:47:59 +09:00
Author: https://github.com/supercomputer7
Commit: 445b5e1e94
Pull-request: https://github.com/SerenityOS/serenity/pull/15467
Issue: https://github.com/SerenityOS/serenity/issues/15444
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/Hendiadyoin1
Reviewed-by: https://github.com/fuel-pcbox
5 changed files with 6 additions and 60 deletions
|
@ -187,30 +187,7 @@ static char const* object_symbol_binding_to_string(ElfW(Word) type)
|
|||
static char const* object_relocation_type_to_string(ElfW(Word) type)
|
||||
{
|
||||
switch (type) {
|
||||
#if ARCH(I386)
|
||||
case R_386_NONE:
|
||||
return "R_386_NONE";
|
||||
case R_386_32:
|
||||
return "R_386_32";
|
||||
case R_386_PC32:
|
||||
return "R_386_PC32";
|
||||
case R_386_GOT32:
|
||||
return "R_386_GOT32";
|
||||
case R_386_PLT32:
|
||||
return "R_386_PLT32";
|
||||
case R_386_COPY:
|
||||
return "R_386_COPY";
|
||||
case R_386_GLOB_DAT:
|
||||
return "R_386_GLOB_DAT";
|
||||
case R_386_JMP_SLOT:
|
||||
return "R_386_JMP_SLOT";
|
||||
case R_386_RELATIVE:
|
||||
return "R_386_RELATIVE";
|
||||
case R_386_TLS_TPOFF:
|
||||
return "R_386_TLS_TPOFF";
|
||||
case R_386_TLS_TPOFF32:
|
||||
return "R_386_TLS_TPOFF32";
|
||||
#else
|
||||
#if ARCH(x86_64)
|
||||
case R_X86_64_NONE:
|
||||
return "R_X86_64_NONE";
|
||||
case R_X86_64_64:
|
||||
|
@ -386,11 +363,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
outln();
|
||||
}
|
||||
|
||||
#if ARCH(I386)
|
||||
auto addr_padding = "";
|
||||
#else
|
||||
auto addr_padding = " ";
|
||||
#endif
|
||||
|
||||
if (display_section_headers) {
|
||||
if (!display_all) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue