Revision: 18288
Author:   [email protected]
Date:     Tue Dec 10 14:28:41 2013 UTC
Log:      Use  FAR jump in GenerateCompareFlatAsciiStrings.

BUG=325487
[email protected]
LOG=N

Review URL: https://codereview.chromium.org/106853002
http://code.google.com/p/v8/source/detail?r=18288

Modified:
 /branches/bleeding_edge/src/x64/code-stubs-x64.cc

=======================================
--- /branches/bleeding_edge/src/x64/code-stubs-x64.cc Wed Dec 4 11:39:24 2013 UTC +++ /branches/bleeding_edge/src/x64/code-stubs-x64.cc Tue Dec 10 14:28:41 2013 UTC
@@ -4335,7 +4335,10 @@
   // Compare loop.
   Label result_not_equal;
   GenerateAsciiCharsCompareLoop(masm, left, right, min_length, scratch2,
-                                &result_not_equal, Label::kNear);
+                                &result_not_equal,
+ // In debug-code mode, SmiTest below might push
+                                // the target label outside the near range.
+                                Label::kFar);

   // Completed loop without finding different characters.
   // Compare lengths (precomputed).

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to