# HG changeset patch # User iveresov # Date 1394747734 25200 # Node ID 36d781313d5a4a86ea597cf49e45323b02809790 # Parent 13a2ccc01c44e45a85a12dc829d5d02c5390b805 8037140: C1: Incorrect argument type used for SharedRuntime::OSR_migration_end in LIRGenerator::do_Goto Summary: Fix the type of osrBuffer parameter to depend on bitness Reviewed-by: kvn, twisti diff -r 13a2ccc01c44 -r 36d781313d5a hotspot/src/share/vm/c1/c1_LIRGenerator.cpp --- a/hotspot/src/share/vm/c1/c1_LIRGenerator.cpp Thu Mar 13 14:55:10 2014 -0700 +++ b/hotspot/src/share/vm/c1/c1_LIRGenerator.cpp Thu Mar 13 14:55:34 2014 -0700 @@ -2526,7 +2526,7 @@ // need to free up storage used for OSR entry point LIR_Opr osrBuffer = block()->next()->operand(); BasicTypeList signature; - signature.append(T_INT); + signature.append(NOT_LP64(T_INT) LP64_ONLY(T_LONG)); // pass a pointer to osrBuffer CallingConvention* cc = frame_map()->c_calling_convention(&signature); __ move(osrBuffer, cc->args()->at(0)); __ call_runtime_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::OSR_migration_end),