# HG changeset patch # User Doug Simon # Date 1334323734 -7200 # Node ID ec177db4a4124891d653d1663915f43a176ed99b # Parent b9db4fee6eb20e563e13b9155303ba0467113ec1 fixed incorrect register arg in graal_create_out_of_bounds_exception stub diff -r b9db4fee6eb2 -r ec177db4a412 src/cpu/x86/vm/c1_Runtime1_x86.cpp --- a/src/cpu/x86/vm/c1_Runtime1_x86.cpp Fri Apr 13 15:26:08 2012 +0200 +++ b/src/cpu/x86/vm/c1_Runtime1_x86.cpp Fri Apr 13 15:28:54 2012 +0200 @@ -1909,7 +1909,7 @@ __ enter(); oop_maps = new OopMapSet(); OopMap* oop_map = save_live_registers(sasm, 0); - int call_offset = __ call_RT(rax, noreg, (address)graal_create_out_of_bounds_exception, c_rarg0); + int call_offset = __ call_RT(rax, noreg, (address)graal_create_out_of_bounds_exception, j_rarg0); oop_maps->add_gc_map(call_offset, oop_map); __ leave(); __ ret(0);