summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2015-10-13 14:45:14 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-10-13 14:45:14 +0000
commitfb11bab9bc96ff05dcb12f43abf58df256b7c7aa (patch)
tree6a9c44b7fd72ff78ec6d172e963b0bed1ef47366
parentdf3456007702b0dea01ffd1adfa74244857712af (diff)
parent245c11ab2095cb12a7731a8ee38815fee964ba10 (diff)
Merge "Fix mips64 build: Add missing "="."
-rw-r--r--runtime/arch/mips64/context_mips64.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/mips64/context_mips64.cc b/runtime/arch/mips64/context_mips64.cc
index 597a74cd5f..d808c9e0dc 100644
--- a/runtime/arch/mips64/context_mips64.cc
+++ b/runtime/arch/mips64/context_mips64.cc
@@ -38,7 +38,7 @@ void Mips64Context::Reset() {
}
void Mips64Context::FillCalleeSaves(const StackVisitor& fr) {
- ArtCode code fr.GetCurrentCode();
+ ArtCode code = fr.GetCurrentCode();
const QuickMethodFrameInfo frame_info = code.GetQuickFrameInfo();
int spill_pos = 0;