diff -r 60bc754b9744 -r 5df03f58d25b src/hotspot/cpu/s390/interpreterRT_s390.cpp --- a/src/hotspot/cpu/s390/interpreterRT_s390.cpp Fri Apr 12 07:51:47 2019 -0400 +++ b/src/hotspot/cpu/s390/interpreterRT_s390.cpp Fri Apr 12 09:30:17 2019 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2016 SAP SE. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * @@ -151,15 +151,15 @@ void SignatureHandlerLibrary::pd_set_handler(address handler) {} -IRT_ENTRY(address, InterpreterRuntime::get_signature(JavaThread* thread, Method* method)) +JRT_ENTRY(address, InterpreterRuntime::get_signature(JavaThread* thread, Method* method)) methodHandle m(thread, method); assert(m->is_native(), "sanity check"); Symbol *s = m->signature(); return (address) s->base(); -IRT_END +JRT_END -IRT_ENTRY(address, InterpreterRuntime::get_result_handler(JavaThread* thread, Method* method)) +JRT_ENTRY(address, InterpreterRuntime::get_result_handler(JavaThread* thread, Method* method)) methodHandle m(thread, method); assert(m->is_native(), "sanity check"); return AbstractInterpreter::result_handler(m->result_type()); -IRT_END +JRT_END