1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:18:13 +00:00

CrashReporter: Fix bogus register alignment on x86_64

This commit is contained in:
Andreas Kling 2021-07-01 11:20:48 +02:00
parent e37f96ccfe
commit 3f5c9d3edb

View file

@ -100,7 +100,7 @@ static TitleAndText build_cpu_registers(const ELF::Core::ThreadInfo& thread_info
builder.append('\n');
builder.appendff(" r8={:16x} r9={:16x} r10={:16x} r11={:16x}", regs.r8, regs.r9, regs.r10, regs.r11);
builder.append('\n');
builder.appendff("r12={:16x} r13={:16x} r14={:16x} r15={:16x}", regs.r12, regs.r13, regs.r14, regs.r15);
builder.appendff("r12={:16x} r13={:16x} r14={:16x} r15={:16x}", regs.r12, regs.r13, regs.r14, regs.r15);
builder.append('\n');
builder.appendff("rip={:16x} rflags={:16x}", regs.rip, regs.rflags);
#endif