comparison src/share/vm/graal/graalRuntime.cpp @ 17150:80d021f12b22

fix typo in graalRuntime.cpp
author Andreas Woess <andreas.woess@jku.at>
date Thu, 18 Sep 2014 18:56:52 +0200
parents 2d6dd2eebd51
children b8f54c5ec73a
comparison
equal deleted inserted replaced
17149:0a35e2789735 17150:80d021f12b22
102 sig_bt[i++] = T_INT; 102 sig_bt[i++] = T_INT;
103 sig_bt[i++] = T_LONG; 103 sig_bt[i++] = T_LONG;
104 sig_bt[i++] = T_VOID; // long stakes 2 slots 104 sig_bt[i++] = T_VOID; // long stakes 2 slots
105 sig_bt[i++] = T_INT; 105 sig_bt[i++] = T_INT;
106 sig_bt[i++] = T_OBJECT; 106 sig_bt[i++] = T_OBJECT;
107 sig_bt[i++] = T_INT; // The number of actual arguments pass to the method. 107 sig_bt[i++] = T_INT; // The number of actual arguments passed to the method.
108 108
109 int comp_args_on_stack = SharedRuntime::java_calling_convention(sig_bt, regs, total_args_passed, false); 109 int comp_args_on_stack = SharedRuntime::java_calling_convention(sig_bt, regs, total_args_passed, false);
110 110
111 SharedRuntime::gen_i2c_adapter(&masm, total_args_passed, comp_args_on_stack, sig_bt, regs, total_args_passed - 1); 111 SharedRuntime::gen_i2c_adapter(&masm, total_args_passed, comp_args_on_stack, sig_bt, regs, total_args_passed - 1);
112 masm.flush(); 112 masm.flush();