< prev index next >

src/hotspot/share/c1/c1_CodeStubs.hpp

Print this page

        

*** 121,131 **** static float float_zero; static double double_zero; public: ConversionStub(Bytecodes::Code bytecode, LIR_Opr input, LIR_Opr result) : _bytecode(bytecode), _input(input), _result(result) { ! NOT_IA32( assert(false, "used only by x86-32"); ) } Bytecodes::Code bytecode() { return _bytecode; } LIR_Opr input() { return _input; } LIR_Opr result() { return _result; } --- 121,131 ---- static float float_zero; static double double_zero; public: ConversionStub(Bytecodes::Code bytecode, LIR_Opr input, LIR_Opr result) : _bytecode(bytecode), _input(input), _result(result) { ! NOT_IA32( ShouldNotReachHere(); ) // used only on x86-32 } Bytecodes::Code bytecode() { return _bytecode; } LIR_Opr input() { return _input; } LIR_Opr result() { return _result; }
< prev index next >