mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibDebug: Remove i686 support
This commit is contained in:
parent
a4c87fac56
commit
1d26b46884
Notes:
sideshowbarker
2024-07-17 02:31:42 +09:00
Author: https://github.com/supercomputer7
Commit: 1d26b46884
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
4 changed files with 6 additions and 33 deletions
|
@ -167,9 +167,7 @@ NonnullOwnPtrVector<DebugInfo::VariableInfo> DebugInfo::get_variables_in_current
|
|||
// TODO: We can store the scopes in a better data structure
|
||||
for (auto const& scope : m_scopes) {
|
||||
FlatPtr ip;
|
||||
#if ARCH(I386)
|
||||
ip = regs.eip;
|
||||
#elif ARCH(X86_64)
|
||||
#if ARCH(X86_64)
|
||||
ip = regs.rip;
|
||||
#elif ARCH(AARCH64)
|
||||
TODO_AARCH64();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue