Skip to content

Commit

Permalink
Merge pull request dotnet#2079 from mikedn/no-decomp
Browse files Browse the repository at this point in the history
Ifdef out useless code in JIT lowering
  • Loading branch information
jkotas committed Nov 18, 2015
2 parents a0f20fa + 655e5da commit 76942bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/jit/lower.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3417,7 +3417,9 @@ void Lowering::DoPhase()
}
#endif
comp->compCurStmt = stmt;
#if !defined(_TARGET_64BIT_)
comp->fgWalkTreePost(&stmt->gtStmt.gtStmtExpr, &Lowering::DecompNodeHelper, this, true);
#endif
comp->fgWalkTreePost(&stmt->gtStmt.gtStmtExpr, &Lowering::LowerNodeHelper, this, true);
// We may have removed "stmt" in LowerNode().
stmt = comp->compCurStmt;
Expand Down

0 comments on commit 76942bb

Please sign in to comment.