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
parent ab695a2b
...@@ -2531,10 +2531,7 @@ void MacroAssembler::VerifyX87StackDepth(uint32_t depth) { ...@@ -2531,10 +2531,7 @@ void MacroAssembler::VerifyX87StackDepth(uint32_t depth) {
and_(eax, kTopMask); and_(eax, kTopMask);
shr(eax, 11); shr(eax, 11);
cmp(eax, Immediate(tos)); cmp(eax, Immediate(tos));
Label all_ok;
j(equal, &all_ok);
Check(equal, "Unexpected FPU stack depth after instruction"); Check(equal, "Unexpected FPU stack depth after instruction");
bind(&all_ok);
fnclex(); fnclex();
pop(eax); pop(eax);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment