summaryrefslogtreecommitdiff
path: root/src/jit/assertionprop.cpp
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2016-06-03 14:34:26 -0700
committerPat Gavlin <pagavlin@microsoft.com>2016-06-09 10:22:45 -0700
commita216fba8ff9f4a505f4fbc2574986303f5e11705 (patch)
treed814e9a6849cdfd52498fd0d222d0e5f24f92744 /src/jit/assertionprop.cpp
parente763cc8a6ee81595d630c300bc2e83b71469cd5a (diff)
downloadcoreclr-a216fba8ff9f4a505f4fbc2574986303f5e11705.tar.gz
coreclr-a216fba8ff9f4a505f4fbc2574986303f5e11705.tar.bz2
coreclr-a216fba8ff9f4a505f4fbc2574986303f5e11705.zip
Remove JIT_FEATURE_SSA_SKIP_DEFS.
This symbol is always defined to `1`. Remove it and its associated dead code.
Diffstat (limited to 'src/jit/assertionprop.cpp')
-rw-r--r--src/jit/assertionprop.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/jit/assertionprop.cpp b/src/jit/assertionprop.cpp
index ac1a794b6c..b4240f6d25 100644
--- a/src/jit/assertionprop.cpp
+++ b/src/jit/assertionprop.cpp
@@ -4756,11 +4756,7 @@ void Compiler::optAssertionPropMain()
fgRemoveRestOfBlock = false;
// Walk the statement trees in this basic block
-#if JIT_FEATURE_SSA_SKIP_DEFS
GenTreePtr stmt = block->FirstNonPhiDef();
-#else
- GenTreePtr stmt = block->bbTreeList;
-#endif
while (stmt)
{
noway_assert(stmt->gtOper == GT_STMT);