--- old/src/cpu/x86/vm/c1_LIRGenerator_x86.cpp 2010-05-25 14:33:57.015893000 -0700 +++ new/src/cpu/x86/vm/c1_LIRGenerator_x86.cpp 2010-05-25 14:33:56.822271000 -0700 @@ -175,7 +175,7 @@ // store and again for the card mark. LIR_Opr tmp = new_pointer_register(); __ leal(LIR_OprFact::address(addr), tmp); - return new LIR_Address(tmp, 0, type); + return new LIR_Address(tmp, (intx)0, type); } else { return addr; } @@ -185,7 +185,7 @@ void LIRGenerator::increment_counter(address counter, int step) { LIR_Opr pointer = new_pointer_register(); __ move(LIR_OprFact::intptrConst(counter), pointer); - LIR_Address* addr = new LIR_Address(pointer, 0, T_INT); + LIR_Address* addr = new LIR_Address(pointer, (intx)0, T_INT); increment_counter(addr, step); }