diff options
author | Greg Clayton <gclayton@apple.com> | 2011-04-25 18:36:36 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-04-25 18:36:36 +0000 |
commit | dc5eb693bd6a96384942c6b247135e0f8078319a (patch) | |
tree | edb87ee089b08d9d186224c819786e39b0f66116 /lldb/source/Symbol/UnwindTable.cpp | |
parent | 6b2a27c7773f33ea0e7e8c319a8d4393c1168ec5 (diff) | |
download | bcm5719-llvm-dc5eb693bd6a96384942c6b247135e0f8078319a.tar.gz bcm5719-llvm-dc5eb693bd6a96384942c6b247135e0f8078319a.zip |
Put plug-ins into the correct directories as they were incorrectly located
in a Utility directory.
llvm-svn: 130135
Diffstat (limited to 'lldb/source/Symbol/UnwindTable.cpp')
-rw-r--r-- | lldb/source/Symbol/UnwindTable.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lldb/source/Symbol/UnwindTable.cpp b/lldb/source/Symbol/UnwindTable.cpp index 3fe1ebb537f..f183debdeda 100644 --- a/lldb/source/Symbol/UnwindTable.cpp +++ b/lldb/source/Symbol/UnwindTable.cpp @@ -1,4 +1,4 @@ -//===-- UnwindTable.cpp ----------------------------------*- C++ -*-===// +//===-- UnwindTable.cpp -----------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -11,16 +11,13 @@ #include <stdio.h> -#include "lldb/lldb-forward.h" - #include "lldb/Core/Module.h" #include "lldb/Core/Section.h" -//#include "lldb/Core/StreamFile.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/FuncUnwinders.h" #include "lldb/Symbol/SymbolContext.h" #include "lldb/Symbol/DWARFCallFrameInfo.h" -#include "lldb/Utility/UnwindAssemblyProfiler.h" +#include "lldb/Target/UnwindAssemblyProfiler.h" // There is one UnwindTable object per ObjectFile. // It contains a list of Unwind objects -- one per function, populated lazily -- for the ObjectFile. |