diff options
| -rw-r--r-- | runtime/arch/x86/quick_entrypoints_x86.S | 2 | ||||
| -rw-r--r-- | runtime/arch/x86_64/quick_entrypoints_x86_64.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/arch/x86/quick_entrypoints_x86.S b/runtime/arch/x86/quick_entrypoints_x86.S index 1d5534a0c1..68ba0cf986 100644 --- a/runtime/arch/x86/quick_entrypoints_x86.S +++ b/runtime/arch/x86/quick_entrypoints_x86.S @@ -1462,7 +1462,7 @@ DEFINE_FUNCTION art_quick_test_suspend CFI_ADJUST_CFA_OFFSET(12) pushl %fs:THREAD_SELF_OFFSET // pass Thread::Current() CFI_ADJUST_CFA_OFFSET(4) - call artTestSuspendFromCode // artTestSuspendFromCode(Thread*) + call SYMBOL(artTestSuspendFromCode) // (Thread*) addl MACRO_LITERAL(16), %esp // pop arguments CFI_ADJUST_CFA_OFFSET(-16) RESTORE_SAVE_EVERYTHING_CALLEE_SAVE_FRAME // restore frame up to return address diff --git a/runtime/arch/x86_64/quick_entrypoints_x86_64.S b/runtime/arch/x86_64/quick_entrypoints_x86_64.S index ff91910c4c..3048404745 100644 --- a/runtime/arch/x86_64/quick_entrypoints_x86_64.S +++ b/runtime/arch/x86_64/quick_entrypoints_x86_64.S @@ -1430,7 +1430,7 @@ DEFINE_FUNCTION art_quick_test_suspend SETUP_SAVE_EVERYTHING_CALLEE_SAVE_FRAME // save everything for GC // Outgoing argument set up movq %gs:THREAD_SELF_OFFSET, %rdi // pass Thread::Current() - call artTestSuspendFromCode // artTestSuspendFromCode(Thread*) + call SYMBOL(artTestSuspendFromCode) // (Thread*) RESTORE_SAVE_EVERYTHING_CALLEE_SAVE_FRAME // restore frame up to return address ret END_FUNCTION art_quick_test_suspend |