1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:37:35 +00:00

LibDebug: Remove i686 support

This commit is contained in:
Liav A 2022-10-04 02:54:37 +03:00 committed by Andreas Kling
parent a4c87fac56
commit 1d26b46884
4 changed files with 6 additions and 33 deletions

View file

@ -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();