mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 788111 - Fix double condition in OutOfLineTruncate. r=dvander
This commit is contained in:
parent
b90d244eaf
commit
4262f3bac0
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user