diff options
author | Pavel Labath <pavel@labath.sk> | 2019-03-06 14:41:43 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2019-03-06 14:41:43 +0000 |
commit | b8093314ef72e91eb00d2e77b0a6c094e28258f6 (patch) | |
tree | ea7cb795a1189ad97b654f131dc2b72b8ce940e5 /lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | |
parent | 89e534746fc8b9ac4103d1d337a60871503e95be (diff) | |
download | bcm5719-llvm-b8093314ef72e91eb00d2e77b0a6c094e28258f6.tar.gz bcm5719-llvm-b8093314ef72e91eb00d2e77b0a6c094e28258f6.zip |
Move RangeMap.h into Utility
Summary:
This file implements some general purpose data structures, and so it
belongs to the Utility module.
Reviewers: zturner, jingham, JDevlieghere, clayborg, espindola
Subscribers: emaste, mgorny, javed.absar, arichardson, MaskRay, lldb-commits
Differential Revision: https://reviews.llvm.org/D58970
llvm-svn: 355509
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp index 03726554205..7ea60303e1b 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp @@ -16,7 +16,6 @@ #include "lldb/Core/Module.h" #include "lldb/Core/ModuleSpec.h" #include "lldb/Core/PluginManager.h" -#include "lldb/Core/RangeMap.h" #include "lldb/Core/Section.h" #include "lldb/Host/FileSystem.h" #include "lldb/Symbol/DWARFCallFrameInfo.h" @@ -26,6 +25,7 @@ #include "lldb/Utility/ArchSpec.h" #include "lldb/Utility/DataBufferHeap.h" #include "lldb/Utility/Log.h" +#include "lldb/Utility/RangeMap.h" #include "lldb/Utility/Status.h" #include "lldb/Utility/Stream.h" #include "lldb/Utility/Timer.h" |