summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/jit/lower.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jit/lower.cpp b/src/jit/lower.cpp
index d94b0ba1c7..2119da372b 100644
--- a/src/jit/lower.cpp
+++ b/src/jit/lower.cpp
@@ -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;