diff options
author | Greg Clayton <gclayton@apple.com> | 2011-01-08 20:28:42 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-01-08 20:28:42 +0000 |
commit | 710dd5aebf64c790a03f2e6f0cc4438e8a00fbd4 (patch) | |
tree | 6130c80cdc395a1275d817de3d8767e45eba446d /lldb/source/Plugins/Process/Utility | |
parent | 9dbbc49f7437113863b8ce06ee7a1235279de3bf (diff) | |
download | bcm5719-llvm-710dd5aebf64c790a03f2e6f0cc4438e8a00fbd4.tar.gz bcm5719-llvm-710dd5aebf64c790a03f2e6f0cc4438e8a00fbd4.zip |
Spelling changes applied from lldb_spelling.diffs from Bruce Mitchener.
Thanks Bruce!
llvm-svn: 123083
Diffstat (limited to 'lldb/source/Plugins/Process/Utility')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp index 05a19fb5532..1db5d6010f8 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp +++ b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp @@ -309,7 +309,7 @@ RegisterContextLLDB::InitializeNonZerothFrame() if (m_sym_ctx_valid == false) decr_pc_and_recompute_addr_range = true; - // Or if we're in the middle of the stack (and not "above" an asynchornous event like sigtramp), + // Or if we're in the middle of the stack (and not "above" an asynchronous event like sigtramp), // and our "current" pc is the start of a function... if (m_sym_ctx_valid && ((RegisterContextLLDB*) m_next_frame.get())->m_frame_type != eSigtrampFrame diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h index c6aece341d5..57e89a3f991 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h +++ b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h @@ -121,11 +121,11 @@ private: InitializeNonZerothFrame(); // Provide a location for where THIS function saved the CALLER's register value - // Or a frame "below" this one savedit, i.e. a function called by this one, preserved a register that this + // Or a frame "below" this one saved it, i.e. a function called by this one, preserved a register that this // function didn't modify/use. // // The RegisterLocation type may be set to eRegisterNotAvailable -- this will happen for a volatile register - // bieng queried mid-stack. Instead of floating frame 0's contents of that register up the stack (which may + // being queried mid-stack. Instead of floating frame 0's contents of that register up the stack (which may // or may not be the value of that reg when the function was executing), we won't return any value. // // If a non-volatile register (a "preserved" register) is requested mid-stack and no frames "below" the requested |