diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-26 10:54:15 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-26 11:55:10 -0700 |
commit | 7934ac288acfb2552bb0b06ec1f61e5820d924a4 (patch) | |
tree | 43f3acd8af7fd34d4ae7b64f6e06bb8429d74bb8 /compiler/stubs/quick/stubs.cc | |
parent | fb331d7ca004f39608fcfdae49d38df90c702ea9 (diff) | |
download | android_art-7934ac288acfb2552bb0b06ec1f61e5820d924a4.tar.gz android_art-7934ac288acfb2552bb0b06ec1f61e5820d924a4.tar.bz2 android_art-7934ac288acfb2552bb0b06ec1f61e5820d924a4.zip |
Fix cpplint whitespace/comments issues
Change-Id: Iae286862c85fb8fd8901eae1204cd6d271d69496
Diffstat (limited to 'compiler/stubs/quick/stubs.cc')
-rw-r--r-- | compiler/stubs/quick/stubs.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/compiler/stubs/quick/stubs.cc b/compiler/stubs/quick/stubs.cc index 790b5d61d3..8fc2a81d24 100644 --- a/compiler/stubs/quick/stubs.cc +++ b/compiler/stubs/quick/stubs.cc @@ -95,7 +95,7 @@ const std::vector<uint8_t>* CreateInterpreterToQuickEntry() { return entry_stub.release(); } -} // namespace arm +} // namespace arm namespace mips { const std::vector<uint8_t>* CreateQuickResolutionTrampoline() { @@ -126,7 +126,7 @@ const std::vector<uint8_t>* CreateQuickResolutionTrampoline() { __ LoadFromOffset(kLoadWord, T9, S1, ENTRYPOINT_OFFSET(pQuickResolutionTrampolineFromCode)); __ Move(A3, S1); // Pass Thread::Current() in A3 __ Move(A2, SP); // Pass SP for Method** callee_addr - __ Jalr(T9); // Call to resolution trampoline (method_idx, receiver, sp, Thread*) + __ Jalr(T9); // Call to resolution trampoline (method_idx, receiver, sp, Thread*) // Restore registers which may have been modified by GC __ LoadFromOffset(kLoadWord, A0, SP, 0); @@ -144,7 +144,7 @@ const std::vector<uint8_t>* CreateQuickResolutionTrampoline() { __ LoadFromOffset(kLoadWord, RA, SP, 60); __ AddConstant(SP, SP, 64); - __ Move(T9, V0); // Put method's code in T9 + __ Move(T9, V0); // Put method's code in T9 __ Jr(T9); // Leaf call to method's code __ Break(); @@ -187,7 +187,7 @@ const std::vector<uint8_t>* CreateInterpreterToQuickEntry() { return entry_stub.release(); } -} // namespace mips +} // namespace mips namespace x86 { const std::vector<uint8_t>* CreateQuickResolutionTrampoline() { @@ -258,6 +258,6 @@ const std::vector<uint8_t>* CreateInterpreterToQuickEntry() { return entry_stub.release(); } -} // namespace x86 +} // namespace x86 -} // namespace art +} // namespace art |