Merge "Allow mips to build." am: 7009a3ccf7 am: 3b6bbb8178 am: fa700068f8

am: 86ee45499d

Change-Id: I6b0ea4e02aac760830b0440ff21c6c610464e3b7
This commit is contained in:
Christopher Ferris 2017-08-02 19:57:08 +00:00 committed by android-build-merger
commit f403575209
2 changed files with 5 additions and 9 deletions

View File

@ -30,15 +30,6 @@ cc_defaults {
enabled: false,
},
},
arch: {
mips: {
enabled: false,
},
mips64: {
enabled: false,
},
},
}
cc_library {

View File

@ -97,6 +97,11 @@ inline void RegsGetLocal(Regs* regs) {
regs->SetFromRaw();
}
#elif defined(__mips__)
// Stub to allow mips to build.
void RegsGetLocal(Regs*) {}
#endif
} // namespace unwindstack