Use stdint types everywhere
R=mark at https://breakpad.appspot.com/535002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1121 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
c02002a581
commit
aeffe1056f
117 changed files with 1385 additions and 1379 deletions
|
@ -93,18 +93,18 @@ 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_int64_t stack_pointer = last_frame->context.g_r[30];
|
||||
uint64_t stack_pointer = last_frame->context.g_r[30];
|
||||
if (stack_pointer <= last_frame->context.g_r[14]) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
u_int32_t instruction;
|
||||
uint32_t instruction;
|
||||
if (!memory_->GetMemoryAtAddress(stack_pointer + 60,
|
||||
&instruction) || instruction <= 1) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
u_int32_t stack_base;
|
||||
uint32_t stack_base;
|
||||
if (!memory_->GetMemoryAtAddress(stack_pointer + 56,
|
||||
&stack_base) || stack_base <= 1) {
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue