< prev index next >

src/cpu/x86/vm/c1_LIRGenerator_x86.cpp

Print this page
rev 9067 : 8139040: Fix initializations before ShouldNotReachHere()

*** 193,203 **** } } LIR_Opr LIRGenerator::load_immediate(int x, BasicType type) { ! LIR_Opr r; if (type == T_LONG) { r = LIR_OprFact::longConst(x); } else if (type == T_INT) { r = LIR_OprFact::intConst(x); } else { --- 193,203 ---- } } LIR_Opr LIRGenerator::load_immediate(int x, BasicType type) { ! LIR_Opr r = NULL; if (type == T_LONG) { r = LIR_OprFact::longConst(x); } else if (type == T_INT) { r = LIR_OprFact::intConst(x); } else {
*** 1022,1032 **** } } void LIRGenerator::do_Convert(Convert* x) { // flags that vary for the different operations and different SSE-settings ! bool fixed_input, fixed_result, round_result, needs_stub; switch (x->op()) { case Bytecodes::_i2l: // fall through case Bytecodes::_l2i: // fall through case Bytecodes::_i2b: // fall through --- 1022,1032 ---- } } void LIRGenerator::do_Convert(Convert* x) { // flags that vary for the different operations and different SSE-settings ! bool fixed_input = false, fixed_result = false, round_result = false, needs_stub = false; switch (x->op()) { case Bytecodes::_i2l: // fall through case Bytecodes::_l2i: // fall through case Bytecodes::_i2b: // fall through
< prev index next >