[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:
Michał Górny 2020-10-26 00:23:36 +01:00
parent 4afa077899
commit 7acf2e2e1e
1 changed files with 1 additions and 1 deletions

View File

@ -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