aboutsummaryrefslogtreecommitdiff
path: root/src/processor/stackwalker_sparc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/processor/stackwalker_sparc.cc')
-rw-r--r--src/processor/stackwalker_sparc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processor/stackwalker_sparc.cc b/src/processor/stackwalker_sparc.cc
index f1eac7c2..7363abd5 100644
--- a/src/processor/stackwalker_sparc.cc
+++ b/src/processor/stackwalker_sparc.cc
@@ -93,7 +93,7 @@ StackFrame* StackwalkerSPARC::GetCallerFrame(const CallStack *stack) {
// A caller frame must reside higher in memory than its callee frames.
// Anything else is an error, or an indication that we've reached the
// end of the stack.
- u_int32_t stack_pointer = last_frame->context.g_r[30];
+ u_int64_t stack_pointer = last_frame->context.g_r[30];
if (stack_pointer <= last_frame->context.g_r[14]) {
return NULL;
}