Reviewers: Lasse Reichstein,

Description:
Get rid of unused label  varaible.

[email protected]

Please review this at http://codereview.chromium.org/261023

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
   M     src/ia32/ic-ia32.cc
   M     src/x64/ic-x64.cc


Index: src/ia32/ic-ia32.cc
===================================================================
--- src/ia32/ic-ia32.cc (revision 3034)
+++ src/ia32/ic-ia32.cc (working copy)
@@ -423,7 +423,7 @@
    __ mov(edx, eax);  // Save the value.
    __ sar(eax, kSmiTagSize);  // Untag the value.
    {  // Clamp the value to [0..255].
-    Label done, is_negative;
+    Label done;
      __ test(eax, Immediate(0xFFFFFF00));
      __ j(zero, &done);
      __ setcc(negative, eax);  // 1 if negative, 0 if positive.
Index: src/x64/ic-x64.cc
===================================================================
--- src/x64/ic-x64.cc   (revision 3034)
+++ src/x64/ic-x64.cc   (working copy)
@@ -488,7 +488,7 @@
    __ movq(rdx, rax);  // Save the value.
    __ SmiToInteger32(rax, rax);
    {  // Clamp the value to [0..255].
-    Label done, is_negative;
+    Label done;
      __ testl(rax, Immediate(0xFFFFFF00));
      __ j(zero, &done);
      __ setcc(negative, rax);  // 1 if negative, 0 if positive.



--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to