From 0ac41d58258a97c62d41c0137338a4c3b9ceb95d Mon Sep 17 00:00:00 2001 From: jeffhao Date: Mon, 27 Aug 2012 13:07:54 -0700 Subject: Fix llvm build for mips. Change-Id: I733c7e4ef2392e0becd04501cae5f954886b0980 --- src/oat/runtime/mips/stub_mips.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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. -- cgit v1.2.3-59-g8ed1b