summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2016-05-26 16:03:34 -0700
committerPat Gavlin <pagavlin@microsoft.com>2016-05-26 16:03:34 -0700
commit8aeb642e5a5204846e7275804c1fa86d69d38a7b (patch)
tree0a11f5feef3b01380616a6d8e1940c33dd80b7a3 /src
parent185a23ebc2b54873d00a91e5ef069e6571c8e356 (diff)
downloadcoreclr-8aeb642e5a5204846e7275804c1fa86d69d38a7b.tar.gz
coreclr-8aeb642e5a5204846e7275804c1fa86d69d38a7b.tar.bz2
coreclr-8aeb642e5a5204846e7275804c1fa86d69d38a7b.zip
Remove a redundant recursive call to `gtSetEvalOrder`.
Diffstat (limited to 'src')
-rw-r--r--src/jit/gentree.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/jit/gentree.cpp b/src/jit/gentree.cpp
index 7a5e551041..73aaffd387 100644
--- a/src/jit/gentree.cpp
+++ b/src/jit/gentree.cpp
@@ -3333,8 +3333,6 @@ COMMON_CNS:
case GT_MKREFANY:
case GT_OBJ:
- level = gtSetEvalOrder(tree->gtOp.gtOp1);
- ftreg |= tree->gtOp.gtOp1->gtRsvdRegs;
// We estimate the cost of a GT_OBJ or GT_MKREFANY to be two loads (GT_INDs)
costEx = 2*IND_COST_EX;
costSz = 2*2;