Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

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: Fix accidentally removed lines from Makefile.am Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/processor/processor.gyp ('k') | src/processor/stackwalker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/processor/stackwalk_common.cc
diff --git a/src/processor/stackwalk_common.cc b/src/processor/stackwalk_common.cc
index 5cbcd27a10c896ba6e8f358287544367011a19f4..f5cf4802307bd4f3aadadcb9a6828bd9fabdadb8 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);
« no previous file with comments | « src/processor/processor.gyp ('k') | src/processor/stackwalker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698