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. |