From: mvstanton@chromium.org Date: Fri, 19 Apr 2013 07:23:09 +0000 (+0000) Subject: Removed redundant instruction in VerifyX87StackDepth() X-Git-Tag: upstream/4.7.83~14516 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dfdd17fc2a1a132e0a771de60d957294b740ffb6;p=platform%2Fupstream%2Fv8.git Removed redundant instruction in VerifyX87StackDepth() BUG= Review URL: https://codereview.chromium.org/14353004 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14346 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc index 3228e83..092aee5 100644 --- a/src/ia32/macro-assembler-ia32.cc +++ b/src/ia32/macro-assembler-ia32.cc @@ -2531,10 +2531,7 @@ void MacroAssembler::VerifyX87StackDepth(uint32_t depth) { 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); }