diff options
author | Zachary Turner <zturner@google.com> | 2015-03-18 21:31:45 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-03-18 21:31:45 +0000 |
commit | 5023257f2359d16357721635a22db8ecd7213343 (patch) | |
tree | 00a0614090a6113db25735521f32f6361a452d7f /lldb/source/Core/ArchSpec.cpp | |
parent | eba5227ccd4ab2e31e62fe1cdaa811b2da665e90 (diff) | |
download | bcm5719-llvm-5023257f2359d16357721635a22db8ecd7213343.tar.gz bcm5719-llvm-5023257f2359d16357721635a22db8ecd7213343.zip |
Move some functions from source/lldb.cpp to Utility.
Specifically, there were some functions for converting enums
to strings and a function for matching a string using a specific
matching algorithm. This moves those functions to more appropriate
headers in lldb/Utility and updates references to include the
new headers.
llvm-svn: 232673
Diffstat (limited to 'lldb/source/Core/ArchSpec.cpp')
-rw-r--r-- | lldb/source/Core/ArchSpec.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Core/ArchSpec.cpp b/lldb/source/Core/ArchSpec.cpp index 8c12d5b06a6..be3f84b06aa 100644 --- a/lldb/source/Core/ArchSpec.cpp +++ b/lldb/source/Core/ArchSpec.cpp @@ -18,7 +18,7 @@ #include "llvm/Support/COFF.h" #include "llvm/Support/ELF.h" #include "llvm/Support/Host.h" -#include "lldb/Utility/SafeMachO.h" + #include "lldb/Core/RegularExpression.h" #include "lldb/Core/StringList.h" #include "lldb/Host/Endian.h" @@ -27,6 +27,8 @@ #include "lldb/Target/Process.h" #include "lldb/Target/RegisterContext.h" #include "lldb/Target/Thread.h" +#include "lldb/Utility/NameMatches.h" +#include "lldb/Utility/SafeMachO.h" #include "Plugins/Process/Utility/ARMDefines.h" #include "Plugins/Process/Utility/InstructionUtils.h" |