diff options
author | Pavel Labath <labath@google.com> | 2015-07-16 13:11:34 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-07-16 13:11:34 +0000 |
commit | 07695bd3ae4c1ebdac21caee6293426159e75fd0 (patch) | |
tree | 1248d6bfc8a84011e99f6c2355f0b36439cac7d5 /lldb/source/Core/ArchSpec.cpp | |
parent | 287531894a788a62da5f6378661c94ba590065bb (diff) | |
download | bcm5719-llvm-07695bd3ae4c1ebdac21caee6293426159e75fd0.tar.gz bcm5719-llvm-07695bd3ae4c1ebdac21caee6293426159e75fd0.zip |
Fix compiler warning in ArchSpec
llvm-svn: 242397
Diffstat (limited to 'lldb/source/Core/ArchSpec.cpp')
-rw-r--r-- | lldb/source/Core/ArchSpec.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lldb/source/Core/ArchSpec.cpp b/lldb/source/Core/ArchSpec.cpp index 2dc001a9047..78624b52eaf 100644 --- a/lldb/source/Core/ArchSpec.cpp +++ b/lldb/source/Core/ArchSpec.cpp @@ -419,8 +419,8 @@ ArchSpec::ArchSpec() : m_triple (), m_core (kCore_invalid), m_byte_order (eByteOrderInvalid), - m_distribution_id (), - m_flags (0) + m_flags (0), + m_distribution_id () { } @@ -428,8 +428,8 @@ ArchSpec::ArchSpec (const char *triple_cstr, Platform *platform) : m_triple (), m_core (kCore_invalid), m_byte_order (eByteOrderInvalid), - m_distribution_id (), - m_flags (0) + m_flags (0), + m_distribution_id () { if (triple_cstr) SetTriple(triple_cstr, platform); @@ -440,8 +440,8 @@ ArchSpec::ArchSpec (const char *triple_cstr) : m_triple (), m_core (kCore_invalid), m_byte_order (eByteOrderInvalid), - m_distribution_id (), - m_flags (0) + m_flags (0), + m_distribution_id () { if (triple_cstr) SetTriple(triple_cstr); @@ -451,8 +451,8 @@ ArchSpec::ArchSpec(const llvm::Triple &triple) : m_triple (), m_core (kCore_invalid), m_byte_order (eByteOrderInvalid), - m_distribution_id (), - m_flags (0) + m_flags (0), + m_distribution_id () { SetTriple(triple); } @@ -461,8 +461,8 @@ ArchSpec::ArchSpec (ArchitectureType arch_type, uint32_t cpu, uint32_t subtype) m_triple (), m_core (kCore_invalid), m_byte_order (eByteOrderInvalid), - m_distribution_id (), - m_flags (0) + m_flags (0), + m_distribution_id () { SetArchitecture (arch_type, cpu, subtype); } |