summaryrefslogtreecommitdiff
path: root/Userland/Applications/CrashReporter
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-10-04 02:56:45 +0300
committerAndreas Kling <kling@serenityos.org>2022-12-28 11:53:41 +0100
commite11dcd21c13526a3fe941219b4436d0ab83cf06c (patch)
tree13f89367bda3b786ad34b4849250451b3b7a6c87 /Userland/Applications/CrashReporter
parentc191daa337d9a0dae0d934bff1d56d754584d849 (diff)
downloadserenity-e11dcd21c13526a3fe941219b4436d0ab83cf06c.zip
Applications: Remove i686 support
Diffstat (limited to 'Userland/Applications/CrashReporter')
-rw-r--r--Userland/Applications/CrashReporter/main.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/Userland/Applications/CrashReporter/main.cpp b/Userland/Applications/CrashReporter/main.cpp
index 35116f7607..b7a41f52c2 100644
--- a/Userland/Applications/CrashReporter/main.cpp
+++ b/Userland/Applications/CrashReporter/main.cpp
@@ -110,11 +110,7 @@ static TitleAndText build_cpu_registers(const ELF::Core::ThreadInfo& thread_info
StringBuilder builder;
-#if ARCH(I386)
- builder.appendff("eax={:p} ebx={:p} ecx={:p} edx={:p}\n", regs.eax, regs.ebx, regs.ecx, regs.edx);
- builder.appendff("ebp={:p} esp={:p} esi={:p} edi={:p}\n", regs.ebp, regs.esp, regs.esi, regs.edi);
- builder.appendff("eip={:p} eflags={:p}", regs.eip, regs.eflags);
-#elif ARCH(X86_64)
+#if ARCH(X86_64)
builder.appendff("rax={:p} rbx={:p} rcx={:p} rdx={:p}\n", regs.rax, regs.rbx, regs.rcx, regs.rdx);
builder.appendff("rbp={:p} rsp={:p} rsi={:p} rdi={:p}\n", regs.rbp, regs.rsp, regs.rsi, regs.rdi);
builder.appendff(" r8={:p} r9={:p} r10={:p} r11={:p}\n", regs.r8, regs.r9, regs.r10, regs.r11);