Chromium Code Reviews

Unified Diff: src/processor/stackwalk_common.cc

Issue 1418453011: [mips64] Support for mips n64 (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: addressing comments Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/processor/stackwalk_common.cc
diff --git a/src/processor/stackwalk_common.cc b/src/processor/stackwalk_common.cc
index 3a6e17feca87c5514272b8563e91b6edbe317204..b864f55350ba197db2ced7632a5a1fbeda6df9ad 100644
--- a/src/processor/stackwalk_common.cc
+++ b/src/processor/stackwalk_common.cc
@@ -546,7 +546,7 @@ static void PrintStack(const CallStack *stack,
sequence =
PrintRegister64("pc", frame_arm64->context.iregs[32], sequence);
}
- } else if (cpu == "mips") {
+ } else if ((cpu == "mips") || (cpu == "mips64")) {
const StackFrameMIPS* frame_mips =
reinterpret_cast<const StackFrameMIPS*>(frame);
« Makefile.am ('K') | « src/processor/processor.gyp ('k') | src/processor/stackwalker.cc » ('j') | no next file with comments »

Powered by Google App Engine