diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-01 21:18:35 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-01 21:18:35 +0000 |
commit | 4d1a26dcc26d7844c8f4b99c9c41594f1abc9b69 (patch) | |
tree | 2c9ec214c5f1fa9df83a2f6f4a50519ddd2820e8 | |
parent | e844cd53051aa886e9376f299501684e31f0ca40 (diff) | |
download | bcm5719-llvm-4d1a26dcc26d7844c8f4b99c9c41594f1abc9b69.tar.gz bcm5719-llvm-4d1a26dcc26d7844c8f4b99c9c41594f1abc9b69.zip |
Minumum -> Minimum.
llvm-svn: 212129
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h b/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h index 44a24f2756a..7949c144d2f 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h +++ b/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h @@ -388,7 +388,7 @@ struct DWARFMappedHash } size_t - GetMinumumHashDataByteSize () const + GetMinimumHashDataByteSize () const { return min_hash_data_byte_size; } @@ -651,7 +651,7 @@ struct DWARFMappedHash } const uint32_t count = m_data.GetU32 (hash_data_offset_ptr); - const size_t min_total_hash_data_size = count * m_header.header_data.GetMinumumHashDataByteSize(); + const size_t min_total_hash_data_size = count * m_header.header_data.GetMinimumHashDataByteSize(); if (count > 0 && m_data.ValidOffsetForDataOfSize (*hash_data_offset_ptr, min_total_hash_data_size)) { // We have at least one HashData entry, and we have enough @@ -724,7 +724,7 @@ struct DWARFMappedHash return eResultError; const uint32_t count = m_data.GetU32 (hash_data_offset_ptr); - const size_t min_total_hash_data_size = count * m_header.header_data.GetMinumumHashDataByteSize(); + const size_t min_total_hash_data_size = count * m_header.header_data.GetMinimumHashDataByteSize(); if (count > 0 && m_data.ValidOffsetForDataOfSize (*hash_data_offset_ptr, min_total_hash_data_size)) { const bool match = regex.Execute(strp_cstr); |