Bug 788111 - Fix double condition in OutOfLineTruncate. r=dvander

This commit is contained in:
Jan de Mooij 2012-09-04 20:20:40 +02:00
parent b90d244eaf
commit 4262f3bac0

View File

@ -1259,7 +1259,7 @@ CodeGeneratorX86Shared::visitOutOfLineTruncate(OutOfLineTruncate *ool)
{
Label positive;
masm.j(Assembler::GreaterThan, &positive);
masm.j(Assembler::Above, &positive);
static const double shiftNeg = 4294967296.0;
masm.loadStaticDouble(&shiftNeg, temp);