summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/ThreadPlanStepUntil.cpp
diff options
context:
space:
mode:
authorAndy Gibbs <andyg1001@hotmail.co.uk>2013-06-19 19:04:53 +0000
committerAndy Gibbs <andyg1001@hotmail.co.uk>2013-06-19 19:04:53 +0000
commita297a97e0910500e2b7bcdaad0529c2fec3acd7d (patch)
tree8e5817ffe12bc3ae70eec378840a9e64a63eab2b /lldb/source/Target/ThreadPlanStepUntil.cpp
parent00dfec6265dfe622b42a9d08b4c50a1974c4f040 (diff)
downloadbcm5719-llvm-a297a97e0910500e2b7bcdaad0529c2fec3acd7d.tar.gz
bcm5719-llvm-a297a97e0910500e2b7bcdaad0529c2fec3acd7d.zip
Sort out a number of mismatched integer types in order to cut down the number of compiler warnings.
llvm-svn: 184333
Diffstat (limited to 'lldb/source/Target/ThreadPlanStepUntil.cpp')
-rw-r--r--lldb/source/Target/ThreadPlanStepUntil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanStepUntil.cpp b/lldb/source/Target/ThreadPlanStepUntil.cpp
index 7f35d04355a..e1b5a0560c7 100644
--- a/lldb/source/Target/ThreadPlanStepUntil.cpp
+++ b/lldb/source/Target/ThreadPlanStepUntil.cpp
@@ -80,7 +80,7 @@ ThreadPlanStepUntil::ThreadPlanStepUntil
m_stack_id = m_thread.GetStackFrameAtIndex(frame_idx)->GetStackID();
// Now set breakpoints on all our return addresses:
- for (int i = 0; i < num_addresses; i++)
+ for (size_t i = 0; i < num_addresses; i++)
{
Breakpoint *until_bp = target_sp->CreateBreakpoint (address_list[i], true).get();
if (until_bp != NULL)
OpenPOWER on IntegriCloud