forked from OSchip/llvm-project
[lldb] [Process/FreeBSDRemote] Fix #include for i386 compat
Include <x86/fpu.h> rather than <machine/fpu.h>, as the latter is not present on i386. Differential Revision: https://reviews.llvm.org/D90128
This commit is contained in:
parent
4afa077899
commit
7acf2e2e1e
|
@ -11,7 +11,7 @@
|
|||
#include "NativeRegisterContextFreeBSD_x86_64.h"
|
||||
|
||||
// clang-format off
|
||||
#include <machine/fpu.h>
|
||||
#include <x86/fpu.h>
|
||||
#include <x86/specialreg.h>
|
||||
#include <cpuid.h>
|
||||
// clang-format on
|
||||
|
|
Loading…
Reference in New Issue