Basic arm cpu support for processor. r=mark at http://breakpad.appspot.com/49011

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@454 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
ted.mielczarek 2009-12-19 21:43:53 +00:00
parent 7a77f45f79
commit 9276b0d301
10 changed files with 469 additions and 9 deletions

View file

@ -308,6 +308,11 @@ bool MinidumpProcessor::GetCPUInfo(Minidump *dump, SystemInfo *info) {
break;
}
case MD_CPU_ARCHITECTURE_ARM: {
info->cpu = "arm";
break;
}
default: {
// Assign the numeric architecture ID into the CPU string.
char cpu_string[7];