summaryrefslogtreecommitdiff
path: root/source/Symbol/FuncUnwinders.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-04-25 18:36:36 +0000
committerGreg Clayton <gclayton@apple.com>2011-04-25 18:36:36 +0000
commit97eecb1834431b39d4d58257f8ccfdea1db7f1de (patch)
treea0aa497d48ea46f580a668dc7004a4d82e9d86b4 /source/Symbol/FuncUnwinders.cpp
parent1220eac343bb80506ecbe7720af911d47dd8a2e8 (diff)
Put plug-ins into the correct directories as they were incorrectly located
in a Utility directory. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@130135 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source/Symbol/FuncUnwinders.cpp')
-rw-r--r--source/Symbol/FuncUnwinders.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/source/Symbol/FuncUnwinders.cpp b/source/Symbol/FuncUnwinders.cpp
index 71292dbd3..0af42105b 100644
--- a/source/Symbol/FuncUnwinders.cpp
+++ b/source/Symbol/FuncUnwinders.cpp
@@ -7,18 +7,17 @@
//
//===----------------------------------------------------------------------===//
-#include "lldb/lldb-private.h"
+#include "lldb/Core/AddressRange.h"
+#include "lldb/Core/Address.h"
#include "lldb/Symbol/FuncUnwinders.h"
+#include "lldb/Symbol/DWARFCallFrameInfo.h"
#include "lldb/Symbol/ObjectFile.h"
#include "lldb/Symbol/UnwindPlan.h"
-#include "lldb/Core/AddressRange.h"
-#include "lldb/Core/Address.h"
#include "lldb/Symbol/UnwindTable.h"
-#include "lldb/Utility/UnwindAssemblyProfiler.h"
-#include "lldb/Utility/ArchDefaultUnwindPlan.h"
-#include "lldb/Symbol/DWARFCallFrameInfo.h"
+#include "lldb/Target/ArchDefaultUnwindPlan.h"
#include "lldb/Target/Thread.h"
#include "lldb/Target/Target.h"
+#include "lldb/Target/UnwindAssemblyProfiler.h"
using namespace lldb;
using namespace lldb_private;