hotspot/src/share/vm/c1/c1_FrameMap.cpp
changeset 22832 03720a5b7595
parent 15848 a7b244c71903
child 22872 b6902ee5bc8d
equal deleted inserted replaced
22831:1e2ba1d62103 22832:03720a5b7595
   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