diff options
Diffstat (limited to 'lldb/source/Symbol')
-rw-r--r-- | lldb/source/Symbol/ClangASTContext.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Symbol/CompactUnwindInfo.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Symbol/DWARFCallFrameInfo.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Symbol/LineTable.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Symbol/SymbolVendor.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Symbol/TypeList.cpp | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp index 68bcde8a47c..192c942a2e8 100644 --- a/lldb/source/Symbol/ClangASTContext.cpp +++ b/lldb/source/Symbol/ClangASTContext.cpp @@ -896,7 +896,7 @@ ClangASTContext::GetBuiltinTypeForDWARFEncodingAndBitSize (const char *type_name return ClangASTType (ast, ast->DoubleTy.getAsOpaquePtr()); if (streq(type_name, "long double") && QualTypeMatchesBitSize (bit_size, ast, ast->LongDoubleTy)) return ClangASTType (ast, ast->LongDoubleTy.getAsOpaquePtr()); - // Fall back to not requring a name match + // Fall back to not requiring a name match if (QualTypeMatchesBitSize (bit_size, ast, ast->FloatTy)) return ClangASTType (ast, ast->FloatTy.getAsOpaquePtr()); if (QualTypeMatchesBitSize (bit_size, ast, ast->DoubleTy)) diff --git a/lldb/source/Symbol/CompactUnwindInfo.cpp b/lldb/source/Symbol/CompactUnwindInfo.cpp index afef4e480e8..624591c24dc 100644 --- a/lldb/source/Symbol/CompactUnwindInfo.cpp +++ b/lldb/source/Symbol/CompactUnwindInfo.cpp @@ -297,7 +297,7 @@ CompactUnwindInfo::ScanIndex (const ProcessSP &process_sp) Host::SystemLog (Host::eSystemLogError, "error: Invalid offset encountered in compact unwind info, skipping\n"); // don't trust anything from this compact_unwind section if it looks - // blatently invalid data in the header. + // blatantly invalid data in the header. m_indexes_computed = eLazyBoolNo; return; } diff --git a/lldb/source/Symbol/DWARFCallFrameInfo.cpp b/lldb/source/Symbol/DWARFCallFrameInfo.cpp index a5f9017918d..8ee21a81a73 100644 --- a/lldb/source/Symbol/DWARFCallFrameInfo.cpp +++ b/lldb/source/Symbol/DWARFCallFrameInfo.cpp @@ -342,7 +342,7 @@ DWARFCallFrameInfo::GetFDEIndex () "error: Invalid fde/cie next entry offset of 0x%x found in cie/fde at 0x%x\n", next_entry, current_entry); - // Don't trust anything in this eh_frame section if we find blatently + // Don't trust anything in this eh_frame section if we find blatantly // invalid data. m_fde_index.Clear(); m_fde_index_initialized = true; @@ -354,7 +354,7 @@ DWARFCallFrameInfo::GetFDEIndex () "error: Invalid cie offset of 0x%x found in cie/fde at 0x%x\n", cie_offset, current_entry); - // Don't trust anything in this eh_frame section if we find blatently + // Don't trust anything in this eh_frame section if we find blatantly // invalid data. m_fde_index.Clear(); m_fde_index_initialized = true; diff --git a/lldb/source/Symbol/LineTable.cpp b/lldb/source/Symbol/LineTable.cpp index 3b951f56766..7c4a1ccbb36 100644 --- a/lldb/source/Symbol/LineTable.cpp +++ b/lldb/source/Symbol/LineTable.cpp @@ -215,7 +215,7 @@ LineTable::FindLineEntryByAddress (const Address &so_addr, LineEntry& line_entry --pos; else if (pos->file_addr == search_entry.file_addr) { - // If this is a termination entry, it should't match since + // If this is a termination entry, it shouldn't match since // entries with the "is_terminal_entry" member set to true // are termination entries that define the range for the // previous entry. @@ -529,7 +529,7 @@ LineTable::LinkLineTable (const FileRangeMap &file_range_map) { entry_linked_file_addr = entry.file_addr - file_range_entry->GetRangeBase() + file_range_entry->data; // Determine if we need to terminate the previous entry when the previous - // entry was not contguous with this one after being linked. + // entry was not contiguous with this one after being linked. if (range_changed && prev_file_range_entry) { prev_end_entry_linked_file_addr = std::min<lldb::addr_t>(entry.file_addr, prev_file_range_entry->GetRangeEnd()) - prev_file_range_entry->GetRangeBase() + prev_file_range_entry->data; diff --git a/lldb/source/Symbol/SymbolVendor.cpp b/lldb/source/Symbol/SymbolVendor.cpp index 6ec9f3861ec..752edd1af71 100644 --- a/lldb/source/Symbol/SymbolVendor.cpp +++ b/lldb/source/Symbol/SymbolVendor.cpp @@ -77,7 +77,7 @@ SymbolVendor::~SymbolVendor() } //---------------------------------------------------------------------- -// Add a represention given an object file. +// Add a representation given an object file. //---------------------------------------------------------------------- void SymbolVendor::AddSymbolFileRepresentation(const ObjectFileSP &objfile_sp) diff --git a/lldb/source/Symbol/TypeList.cpp b/lldb/source/Symbol/TypeList.cpp index 8d97b2ba25c..05ef73a7475 100644 --- a/lldb/source/Symbol/TypeList.cpp +++ b/lldb/source/Symbol/TypeList.cpp @@ -249,9 +249,9 @@ TypeList::RemoveMismatchedTypes (const std::string &type_scope, { if (type_scope_pos >= 2) { - // Our match scope ends with the type scope we were lookikng for, + // Our match scope ends with the type scope we were looking for, // but we need to make sure what comes before the matching - // type scope is a namepace boundary in case we are trying to match: + // type scope is a namespace boundary in case we are trying to match: // type_basename = "d" // type_scope = "b::c::" // We want to match: |