fix x64 build error (introduced by rebasing)

TEST=compiles

Review URL: http://codereview.chromium.org/6980018

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7833 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 95ff8511
...@@ -4580,7 +4580,7 @@ void StringCompareStub::GenerateCompareFlatAsciiStrings(MacroAssembler* masm, ...@@ -4580,7 +4580,7 @@ void StringCompareStub::GenerateCompareFlatAsciiStrings(MacroAssembler* masm,
// Compare lengths (precomputed). // Compare lengths (precomputed).
__ bind(&compare_lengths); __ bind(&compare_lengths);
__ SmiTest(length_difference); __ SmiTest(length_difference);
__ j(not_zero, &result_not_equal, Label::kNear); __ j(not_zero, &result_not_equal);
// Result is EQUAL. // Result is EQUAL.
__ Move(rax, Smi::FromInt(EQUAL)); __ Move(rax, Smi::FromInt(EQUAL));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment