diff options
| author | 2012-08-27 13:07:54 -0700 | |
|---|---|---|
| committer | 2012-08-27 13:07:54 -0700 | |
| commit | 0ac41d58258a97c62d41c0137338a4c3b9ceb95d (patch) | |
| tree | 936ab11f4e86eebe465a5a1f4b363880bef2b628 /src | |
| parent | 7fbee0731b14b5bf392a4254f5cd84685ab517da (diff) | |
Fix llvm build for mips.
Change-Id: I733c7e4ef2392e0becd04501cae5f954886b0980
Diffstat (limited to 'src')
| -rw-r--r-- | src/oat/runtime/mips/stub_mips.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/oat/runtime/mips/stub_mips.cc b/src/oat/runtime/mips/stub_mips.cc index 38a1586bd4..301fafe47a 100644 --- a/src/oat/runtime/mips/stub_mips.cc +++ b/src/oat/runtime/mips/stub_mips.cc @@ -94,9 +94,9 @@ ByteArray* MipsCreateResolutionTrampoline(Runtime::TrampolineType type) { __ LoadFromOffset(kLoadWord, T9, S1, ENTRYPOINT_OFFSET(pUnresolvedDirectMethodTrampolineFromCode)); - __ mov(A2, S1); // Pass Thread::Current() in A2 + __ Move(A2, S1); // Pass Thread::Current() in A2 __ LoadImmediate(A3, type); // Pass is_static - __ mov(A1, SP); // Pass SP for Method** callee_addr + __ Move(A1, SP); // Pass SP for Method** callee_addr __ Jalr(T9); // Call to unresolved direct method trampoline (callee, callee_addr, Thread*, is_static) // Restore frame, argument registers, and RA. |