diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-08 18:05:41 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-08 18:05:41 +0000 |
commit | aaa0ba31a996b189b8985e5d05559c254c05d3f8 (patch) | |
tree | 6ea608bed1677877a10c908ff1806db2b3d5fc5f /lldb/source/Target | |
parent | c3aba6aafa2c85ef01001fc223b2f988d5e76bfe (diff) | |
download | bcm5719-llvm-aaa0ba31a996b189b8985e5d05559c254c05d3f8.tar.gz bcm5719-llvm-aaa0ba31a996b189b8985e5d05559c254c05d3f8.zip |
Fix typos.
llvm-svn: 212553
Diffstat (limited to 'lldb/source/Target')
-rw-r--r-- | lldb/source/Target/SectionLoadList.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Target/StackFrame.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Target/StackFrameList.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Target/SectionLoadList.cpp b/lldb/source/Target/SectionLoadList.cpp index 1975a868df0..da3aea5034d 100644 --- a/lldb/source/Target/SectionLoadList.cpp +++ b/lldb/source/Target/SectionLoadList.cpp @@ -116,7 +116,7 @@ SectionLoadList::SetSectionLoadAddress (const lldb::SectionSP §ion, addr_t l { // Some sections are ok to overlap, and for others we should warn. When // we have multiple load addresses that correspond to a section, we will - // allways attribute the section to the be last section that claims it + // always attribute the section to the be last section that claims it // exists at that address. Sometimes it is ok for more that one section // to be loaded at a specific load address, and other times it isn't. // The "warn_multiple" parameter tells us if we should warn in this case diff --git a/lldb/source/Target/StackFrame.cpp b/lldb/source/Target/StackFrame.cpp index 3cafcdc065e..e497b176ccf 100644 --- a/lldb/source/Target/StackFrame.cpp +++ b/lldb/source/Target/StackFrame.cpp @@ -360,7 +360,7 @@ StackFrame::GetSymbolContext (uint32_t resolve_scope) } - // Resolve our PC to section offset if we haven't alreday done so + // Resolve our PC to section offset if we haven't already done so // and if we don't have a module. The resolved address section will // contain the module to which it belongs if (!m_sc.module_sp && m_flags.IsClear(RESOLVED_FRAME_CODE_ADDR)) diff --git a/lldb/source/Target/StackFrameList.cpp b/lldb/source/Target/StackFrameList.cpp index d81606a4ef7..99234dc61f1 100644 --- a/lldb/source/Target/StackFrameList.cpp +++ b/lldb/source/Target/StackFrameList.cpp @@ -269,7 +269,7 @@ StackFrameList::GetFramesUpTo(uint32_t end_idx) StreamFile s(stdout, false); #endif // If we are hiding some frames from the outside world, we need to add those onto the total count of - // frames to fetch. However, we don't need ot do that if end_idx is 0 since in that case we always + // frames to fetch. However, we don't need to do that if end_idx is 0 since in that case we always // get the first concrete frame and all the inlined frames below it... And of course, if end_idx is // UINT32_MAX that means get all, so just do that... |