mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-19 07:49:05 +00:00
LibX86: Remove i686 support
This commit is contained in:
parent
eca57006f6
commit
e1ee8f89f2
Notes:
sideshowbarker
2024-07-17 05:03:11 +09:00
Author: https://github.com/supercomputer7
Commit: e1ee8f89f2
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
1 changed files with 2 additions and 6 deletions
|
@ -22,15 +22,11 @@ public:
|
||||||
{
|
{
|
||||||
if (!m_stream.can_read())
|
if (!m_stream.can_read())
|
||||||
return {};
|
return {};
|
||||||
#if ARCH(I386)
|
#if ARCH(X86_64)
|
||||||
return Instruction::from_stream(m_stream, ProcessorMode::Protected);
|
|
||||||
#else
|
|
||||||
# if ARCH(X86_64)
|
|
||||||
return Instruction::from_stream(m_stream, ProcessorMode::Long);
|
return Instruction::from_stream(m_stream, ProcessorMode::Long);
|
||||||
# else
|
#else
|
||||||
dbgln("Unsupported platform");
|
dbgln("Unsupported platform");
|
||||||
return {};
|
return {};
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue