From 7acf2e2e1e8f7e2eac2dd5bbf7d752ba7ad4e79c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Mon, 26 Oct 2020 00:23:36 +0100 Subject: [PATCH] [lldb] [Process/FreeBSDRemote] Fix #include for i386 compat Include rather than , as the latter is not present on i386. Differential Revision: https://reviews.llvm.org/D90128 --- .../FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp b/lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp index 3460f53a2934..ac83aeda997c 100644 --- a/lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp +++ b/lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp @@ -11,7 +11,7 @@ #include "NativeRegisterContextFreeBSD_x86_64.h" // clang-format off -#include +#include #include #include // clang-format on