Skip to content

Commit 1335ae4

Browse files
committed
changed tabs to spaces
#5655 (comment)
1 parent e80a56d commit 1335ae4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/Runtime/ByteCode/ByteCodeEmitter.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9260,15 +9260,15 @@ void ByteCodeGenerator::EmitInvertedLoop(ParseNodeLoop* outerLoop, ParseNodeFor*
92609260
this->m_writer.MarkLabel(invertedLoopLabel);
92619261

92629262
// Emit a zero trip test for the original outer-loop if the outer-loop
9263-
// has a condition
9264-
if (outerLoop->AsParseNodeFor()->pnodeCond)
9265-
{
9266-
Js::ByteCodeLabel zeroTrip = this->m_writer.DefineLabel();
9267-
ParseNode* testNode = this->GetParser()->CopyPnode(outerLoop->AsParseNodeFor()->pnodeCond);
9268-
EmitBooleanExpression(testNode, zeroTrip, afterInvertedLoop, this, funcInfo, true, false);
9269-
this->m_writer.MarkLabel(zeroTrip);
9270-
funcInfo->ReleaseLoc(testNode);
9271-
}
9263+
// has a condition
9264+
if (outerLoop->AsParseNodeFor()->pnodeCond)
9265+
{
9266+
Js::ByteCodeLabel zeroTrip = this->m_writer.DefineLabel();
9267+
ParseNode* testNode = this->GetParser()->CopyPnode(outerLoop->AsParseNodeFor()->pnodeCond);
9268+
EmitBooleanExpression(testNode, zeroTrip, afterInvertedLoop, this, funcInfo, true, false);
9269+
this->m_writer.MarkLabel(zeroTrip);
9270+
funcInfo->ReleaseLoc(testNode);
9271+
}
92729272

92739273
// emit inverted
92749274
Emit(invertedLoop->pnodeInit, this, funcInfo, false);

0 commit comments

Comments
 (0)