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:
parent
e37f96ccfe
commit
3f5c9d3edb
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue