diff options
author | Zachary Turner <zturner@google.com> | 2014-08-20 16:42:51 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2014-08-20 16:42:51 +0000 |
commit | 13b1826104584b362e83d15bc72799b03f28ebd2 (patch) | |
tree | e09615a35919f90f56022dd1f717af060bfb2620 /lldb/source/Plugins/ObjectFile | |
parent | e1bb055ed393eac50ef19541d240d4cee46b06fa (diff) | |
download | bcm5719-llvm-13b1826104584b362e83d15bc72799b03f28ebd2.tar.gz bcm5719-llvm-13b1826104584b362e83d15bc72799b03f28ebd2.zip |
Move Host::GetArchitecture to HostInfo::GetArchitecture.
As a side effect, this patch also eliminates all of the
preprocessor conditionals previously used to implement
GetArchitecture().
llvm-svn: 216074
Diffstat (limited to 'lldb/source/Plugins/ObjectFile')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp index 606d1f879f1..946557060e2 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp @@ -27,7 +27,6 @@ #include "lldb/Symbol/SymbolContext.h" #include "lldb/Target/SectionLoadList.h" #include "lldb/Target/Target.h" -#include "lldb/Host/Host.h" #include "lldb/Host/HostInfo.h" #include "llvm/ADT/PointerUnion.h" @@ -588,7 +587,7 @@ ObjectFileELF::GetModuleSpecifications (const lldb_private::FileSpec& file, llvm::Triple &spec_triple = spec.GetArchitecture ().GetTriple (); if (spec_triple.getVendor () == llvm::Triple::VendorType::UnknownVendor) { - const llvm::Triple &host_triple = Host::GetArchitecture ().GetTriple (); + const llvm::Triple &host_triple = HostInfo::GetArchitecture().GetTriple(); if (spec_triple.getOS () == host_triple.getOS ()) spec_triple.setVendor (host_triple.getVendor ()); } @@ -1276,7 +1275,7 @@ ObjectFileELF::GetSectionHeaderInfo(SectionHeaderColl §ion_headers, { case 4: { - const ArchSpec host_arch32 = Host::GetArchitecture (Host::eSystemDefaultArchitecture32); + const ArchSpec host_arch32 = HostInfo::GetArchitecture(HostInfo::eArchKind32); if (host_arch32.GetCore() == arch_spec.GetCore()) { arch_spec.GetTriple().setOSName(HostInfo::GetOSString().data()); @@ -1286,7 +1285,7 @@ ObjectFileELF::GetSectionHeaderInfo(SectionHeaderColl §ion_headers, break; case 8: { - const ArchSpec host_arch64 = Host::GetArchitecture (Host::eSystemDefaultArchitecture64); + const ArchSpec host_arch64 = HostInfo::GetArchitecture(HostInfo::eArchKind64); if (host_arch64.GetCore() == arch_spec.GetCore()) { arch_spec.GetTriple().setOSName(HostInfo::GetOSString().data()); |