Revision: 14346
Author:   [email protected]
Date:     Fri Apr 19 00:23:09 2013
Log:      Removed redundant instruction in VerifyX87StackDepth()

BUG=

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

Modified:
 /branches/bleeding_edge/src/ia32/macro-assembler-ia32.cc

=======================================
--- /branches/bleeding_edge/src/ia32/macro-assembler-ia32.cc Tue Apr 9 02:02:28 2013 +++ /branches/bleeding_edge/src/ia32/macro-assembler-ia32.cc Fri Apr 19 00:23:09 2013
@@ -2531,10 +2531,7 @@
   and_(eax, kTopMask);
   shr(eax, 11);
   cmp(eax, Immediate(tos));
-  Label all_ok;
-  j(equal, &all_ok);
   Check(equal, "Unexpected FPU stack depth after instruction");
-  bind(&all_ok);
   fnclex();
   pop(eax);
 }

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