comparison src/share/vm/c1/c1_FrameMap.cpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 89152779163c
children
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
131 sig_bt[i + 1] = T_VOID; 131 sig_bt[i + 1] = T_VOID;
132 i++; 132 i++;
133 } 133 }
134 } 134 }
135 135
136 intptr_t out_preserve = SharedRuntime::c_calling_convention(sig_bt, regs, sizeargs); 136 intptr_t out_preserve = SharedRuntime::c_calling_convention(sig_bt, regs, NULL, sizeargs);
137 LIR_OprList* args = new LIR_OprList(signature->length()); 137 LIR_OprList* args = new LIR_OprList(signature->length());
138 for (i = 0; i < sizeargs;) { 138 for (i = 0; i < sizeargs;) {
139 BasicType t = sig_bt[i]; 139 BasicType t = sig_bt[i];
140 assert(t != T_VOID, "should be skipping these"); 140 assert(t != T_VOID, "should be skipping these");
141 141