summaryrefslogtreecommitdiff
path: root/src/jit/compiler.h
diff options
context:
space:
mode:
authorAndy Ayers <andya@microsoft.com>2019-03-04 23:30:48 -0800
committerGitHub <noreply@github.com>2019-03-04 23:30:48 -0800
commit04fed62162092da2a824e425aa65b8fcfc70ce14 (patch)
tree3b439f5336944c2f163f1eb2946ff53e22878de3 /src/jit/compiler.h
parent7d54e6130f0db16b2eaa80272076ae3bd725cf69 (diff)
downloadcoreclr-04fed62162092da2a824e425aa65b8fcfc70ce14.tar.gz
coreclr-04fed62162092da2a824e425aa65b8fcfc70ce14.tar.bz2
coreclr-04fed62162092da2a824e425aa65b8fcfc70ce14.zip
JIT: remove unneeded ref count updating traversal from optimizer (#22954)
The ref count update traversal in the optimizer is not doing anything, so remove it. This was overlooked when we changed away from incremental updates in #19345. Also: fix up comments and documentation to reflect the current approach to local var ref counts.
Diffstat (limited to 'src/jit/compiler.h')
-rw-r--r--src/jit/compiler.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/jit/compiler.h b/src/jit/compiler.h
index 5fec2545c0..fbf7fdc5e1 100644
--- a/src/jit/compiler.h
+++ b/src/jit/compiler.h
@@ -5473,10 +5473,6 @@ public:
protected:
static fgWalkPreFn optValidRangeCheckIndex;
- static fgWalkPreFn optRemoveTreeVisitor; // Helper passed to Compiler::fgWalkAllTreesPre() to decrement the LclVar
- // usage counts
-
- void optRemoveTree(GenTree* deadTree, GenTree* keepList);
/**************************************************************************
*