mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 13:07:46 +00:00
LibC: Remove i686 support
This commit is contained in:
parent
85b453c2e4
commit
92da98822a
11 changed files with 9 additions and 169 deletions
|
@ -8,8 +8,6 @@
|
|||
|
||||
#include <AK/Platform.h>
|
||||
|
||||
#if ARCH(I386)
|
||||
# include "i386/regs.h"
|
||||
#elif ARCH(X86_64)
|
||||
#if ARCH(X86_64)
|
||||
# include "x86_64/regs.h"
|
||||
#endif
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#ifdef __cplusplus
|
||||
struct [[gnu::packed]] PtraceRegisters : public __mcontext {
|
||||
#if defined(__cplusplus) && defined(__cpp_concepts)
|
||||
# if defined(__cplusplus) && defined(__cpp_concepts)
|
||||
FlatPtr ip() const
|
||||
{
|
||||
return rip;
|
||||
|
@ -38,7 +38,7 @@ struct [[gnu::packed]] PtraceRegisters : public __mcontext {
|
|||
{
|
||||
rbp = bp;
|
||||
}
|
||||
#endif
|
||||
# endif
|
||||
};
|
||||
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue