diff options
author | mark@chromium.org <mark@chromium.org> | 2015-04-15 19:28:11 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org> | 2015-04-15 19:28:11 +0000 |
commit | d88401cca9ff7640387a0d88d75de1e7d8fff294 (patch) | |
tree | b47c776a127bb465572e382e752d5d63ca9b544c /src/tools | |
parent | Use __NR_rt_sigaction instead of __NR_sigaction (diff) | |
download | breakpad-d88401cca9ff7640387a0d88d75de1e7d8fff294.tar.xz |
MIPS64: Initial MIPS64 related change.
With this change Breakpad can be compiled for MIPS64,
but it is not yet functional.
Patch by Gordana Cmiljanovic <Gordana.Cmiljanovic@imgtec.com>
Review URL: https://breakpad.appspot.com/6824002/
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1446 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/linux/md2core/minidump-2-core.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/linux/md2core/minidump-2-core.cc b/src/tools/linux/md2core/minidump-2-core.cc index 82007604..bcb0076e 100644 --- a/src/tools/linux/md2core/minidump-2-core.cc +++ b/src/tools/linux/md2core/minidump-2-core.cc @@ -384,7 +384,9 @@ ParseThreadRegisters(CrashedProcess::Thread* thread, thread->fpregs.regs[i] = rawregs->float_save.regs[i]; thread->fpregs.fpcsr = rawregs->float_save.fpcsr; +#if _MIPS_SIM == _ABIO32 thread->fpregs.fir = rawregs->float_save.fir; +#endif } #else #error "This code has not been ported to your platform yet" |