This revision was automatically updated to reflect the committed changes. Closed by commit rG7acf2e2e1e8f: [lldb] [Process/FreeBSDRemote] Fix #include for i386 compat (authored by mgorny). Herald added a project: LLDB.
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D90128/new/ https://reviews.llvm.org/D90128 Files: lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp Index: lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp =================================================================== --- lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp +++ lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp @@ -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
Index: lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp =================================================================== --- lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp +++ lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp @@ -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
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits