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/Plugins/Process/Utility/UnwindLLDB.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/Plugins/Process/Utility/UnwindLLDB.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp b/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp index e972c8408e8..98078195c45 100644 --- a/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp +++ b/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp @@ -7,16 +7,16 @@ // //===----------------------------------------------------------------------===// -#include "lldb/Target/Thread.h" -#include "lldb/Target/Target.h" -#include "lldb/Target/Process.h" -#include "lldb/Target/RegisterContext.h" #include "lldb/Core/Module.h" +#include "lldb/Core/Log.h" #include "lldb/Symbol/FuncUnwinders.h" #include "lldb/Symbol/Function.h" -#include "lldb/Utility/ArchDefaultUnwindPlan.h" #include "lldb/Symbol/UnwindPlan.h" -#include "lldb/Core/Log.h" +#include "lldb/Target/ArchDefaultUnwindPlan.h" +#include "lldb/Target/Thread.h" +#include "lldb/Target/Target.h" +#include "lldb/Target/Process.h" +#include "lldb/Target/RegisterContext.h" #include "UnwindLLDB.h" #include "RegisterContextLLDB.h" |