From 6e5ce0ff9056f9630a5143c72635498b54a34062 Mon Sep 17 00:00:00 2001 From: Brian Sullivan Date: Fri, 16 Feb 2018 15:39:52 -0800 Subject: [PATCH] Code Review - Removed unnecessary assert. --- src/jit/optcse.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/jit/optcse.cpp b/src/jit/optcse.cpp index 35d0dc2..5a8841e 100644 --- a/src/jit/optcse.cpp +++ b/src/jit/optcse.cpp @@ -406,7 +406,6 @@ Compiler::fgWalkResult Compiler::optHasCSEdefWithSideeffect(GenTree** pTree, fgW if (IS_CSE_DEF(tree->gtCSEnum)) { // This node is a CSE def - assert(IS_CSE_DEF(tree->gtCSEnum)); // If this node contains any persistent side effects then we will return WALK_ABORT. // -- 2.7.4