mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
LibX86: Remove i686 support
This commit is contained in:
parent
eca57006f6
commit
e1ee8f89f2
1 changed files with 2 additions and 6 deletions
|
@ -22,15 +22,11 @@ public:
|
|||
{
|
||||
if (!m_stream.can_read())
|
||||
return {};
|
||||
#if ARCH(I386)
|
||||
return Instruction::from_stream(m_stream, ProcessorMode::Protected);
|
||||
#else
|
||||
# if ARCH(X86_64)
|
||||
#if ARCH(X86_64)
|
||||
return Instruction::from_stream(m_stream, ProcessorMode::Long);
|
||||
# else
|
||||
#else
|
||||
dbgln("Unsupported platform");
|
||||
return {};
|
||||
# endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue