Skip to content

Commit 76942bb

Browse files
committed
Merge pull request dotnet#2079 from mikedn/no-decomp
Ifdef out useless code in JIT lowering
2 parents a0f20fa + 655e5da commit 76942bb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/jit/lower.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -3417,7 +3417,9 @@ void Lowering::DoPhase()
34173417
}
34183418
#endif
34193419
comp->compCurStmt = stmt;
3420+
#if !defined(_TARGET_64BIT_)
34203421
comp->fgWalkTreePost(&stmt->gtStmt.gtStmtExpr, &Lowering::DecompNodeHelper, this, true);
3422+
#endif
34213423
comp->fgWalkTreePost(&stmt->gtStmt.gtStmtExpr, &Lowering::LowerNodeHelper, this, true);
34223424
// We may have removed "stmt" in LowerNode().
34233425
stmt = comp->compCurStmt;

0 commit comments

Comments
 (0)