summaryrefslogtreecommitdiffstats
path: root/lldb/tools/debugserver/source/MacOSX
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2018-05-29 09:10:46 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2018-05-29 09:10:46 +0000
commit4ebdee0a59e900e96b5bc177247213b5e33bb058 (patch)
tree53166535071c214e9e307e851e80f6f8766e77c2 /lldb/tools/debugserver/source/MacOSX
parent9c3d1f468a0238c5a5a23499bbf76355f5150801 (diff)
downloadbcm5719-llvm-4ebdee0a59e900e96b5bc177247213b5e33bb058.tar.gz
bcm5719-llvm-4ebdee0a59e900e96b5bc177247213b5e33bb058.zip
Typo fixes.
Reviewers: javed.absar Subscribers: ki.stfu, JDevlieghere, lldb-commits Differential Revision: https://reviews.llvm.org/D47421 llvm-svn: 333399
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX')
-rw-r--r--lldb/tools/debugserver/source/MacOSX/MachProcess.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachProcess.mm b/lldb/tools/debugserver/source/MacOSX/MachProcess.mm
index 95565041e94..2703271ee99 100644
--- a/lldb/tools/debugserver/source/MacOSX/MachProcess.mm
+++ b/lldb/tools/debugserver/source/MacOSX/MachProcess.mm
@@ -1486,7 +1486,7 @@ bool MachProcess::Detach() {
// Resume our task
m_task.Resume();
- // NULL our task out as we have already retored all exception ports
+ // NULL our task out as we have already restored all exception ports
m_task.Clear();
// Clear out any notion of the process we once were
@@ -1797,7 +1797,7 @@ bool MachProcess::DisableBreakpoint(nub_addr_t addr, bool remove) {
break_op_size) {
bool verify = false;
if (bp->IsEnabled()) {
- // Make sure we have the a breakpoint opcode exists at this address
+ // Make sure a breakpoint opcode exists at this address
if (memcmp(curr_break_op, break_op, break_op_size) == 0) {
break_op_found = true;
// We found a valid breakpoint opcode at this address, now restore
OpenPOWER on IntegriCloud