+ switch from using system sqlite to the bundled one because they have many modifications that are needed + add a new mirror for the distfile because the google one is utterly slow
13 lines
559 B
Plaintext
13 lines
559 B
Plaintext
$OpenBSD: patch-v8_src_x64_lithium-codegen-x64_cc,v 1.2 2011/04/29 13:18:02 robert Exp $
|
|
--- v8/src/x64/lithium-codegen-x64.cc.orig Tue Apr 26 10:22:52 2011
|
|
+++ v8/src/x64/lithium-codegen-x64.cc Thu Apr 28 11:17:49 2011
|
|
@@ -1242,7 +1242,7 @@ void LCodeGen::DoBranch(LBranch* instr) {
|
|
__ j(equal, true_label);
|
|
__ CompareRoot(reg, Heap::kFalseValueRootIndex);
|
|
__ j(equal, false_label);
|
|
- __ SmiCompare(reg, Smi::FromInt(0));
|
|
+ __ Cmp(reg, Smi::FromInt(0));
|
|
__ j(equal, false_label);
|
|
__ JumpIfSmi(reg, true_label);
|
|
|