From 68b801108b8c8785e890db73c0edf4772381dd70 Mon Sep 17 00:00:00 2001 From: Stefan Ring Date: Thu, 13 Oct 2011 00:05:41 +0200 Subject: [PATCH] * src/vm/jit/arm/asmpart.S: Designate function labels as such; required for thumb interworking. --- src/vm/jit/arm/asmpart.S | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/vm/jit/arm/asmpart.S b/src/vm/jit/arm/asmpart.S index 7786ab160..eaee0213d 100644 --- a/src/vm/jit/arm/asmpart.S +++ b/src/vm/jit/arm/asmpart.S @@ -40,10 +40,15 @@ /* export functions ***********************************************************/ .globl asm_vm_call_method + .type asm_vm_call_method, %function .globl asm_vm_call_method_int + .type asm_vm_call_method_int, %function .globl asm_vm_call_method_long + .type asm_vm_call_method_long, %function .globl asm_vm_call_method_float + .type asm_vm_call_method_float, %function .globl asm_vm_call_method_double + .type asm_vm_call_method_double, %function .globl asm_vm_call_method_exception_handler .globl asm_vm_call_method_end @@ -53,6 +58,7 @@ .globl asm_abstractmethoderror .globl asm_cacheflush + .type asm_cacheflush, %function /* asm_vm_call_method ********************************************************** -- 2.25.1