--- old/src/share/vm/interpreter/interpreterRuntime.cpp 2011-09-01 13:01:46.475560911 +0200 +++ new/src/share/vm/interpreter/interpreterRuntime.cpp 2011-09-01 13:01:46.310776933 +0200 @@ -1244,7 +1244,7 @@ // preparing the same method will be sure to see non-null entry & mirror. IRT_END -#if defined(IA32) || defined(AMD64) +#if defined(IA32) || defined(AMD64) || defined(ARM) IRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address)) if (src_address == dest_address) { return; --- old/src/share/vm/interpreter/interpreterRuntime.hpp 2011-09-01 13:01:48.080289439 +0200 +++ new/src/share/vm/interpreter/interpreterRuntime.hpp 2011-09-01 13:01:47.909382755 +0200 @@ -141,8 +141,8 @@ methodOopDesc* method, intptr_t* from, intptr_t* to); -#if defined(IA32) || defined(AMD64) - // Popframe support (only needed on x86 and AMD64) +#if defined(IA32) || defined(AMD64) || defined(ARM) + // Popframe support (only needed on x86, AMD64 and ARM) static void popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address); #endif