[lldb] [Process/FreeBSDRemote] Fix #include for i386 compat
authorMichał Górny <mgorny@moritz.systems>
Sun, 25 Oct 2020 23:23:36 +0000 (00:23 +0100)
committerMichał Górny <mgorny@moritz.systems>
Mon, 26 Oct 2020 10:53:26 +0000 (11:53 +0100)
Include <x86/fpu.h> rather than <machine/fpu.h>, as the latter is not
present on i386.

Differential Revision: https://reviews.llvm.org/D90128

lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp

index 3460f53..ac83aed 100644 (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