summaryrefslogtreecommitdiff
path: root/src/jit/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/compiler.h')
-rw-r--r--src/jit/compiler.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/jit/compiler.h b/src/jit/compiler.h
index ba849109ff..9e79a98b00 100644
--- a/src/jit/compiler.h
+++ b/src/jit/compiler.h
@@ -2392,6 +2392,7 @@ public :
static fgWalkPreFn lvaDecRefCntsCB;
void lvaDecRefCnts (GenTreePtr tree);
void lvaRecursiveDecRefCounts(GenTreePtr tree);
+ void lvaRecursiveIncRefCounts(GenTreePtr tree);
void lvaAdjustRefCnts ();
@@ -3447,10 +3448,11 @@ public :
VARSET_VALRET_TP fgComputeLife (VARSET_VALARG_TP life,
GenTreePtr startNode,
GenTreePtr endNode,
- VARSET_VALARG_TP volatileVars
+ VARSET_VALARG_TP volatileVars,
+ bool* pStmtInfoDirty
DEBUGARG( bool * treeModf));
- bool fgRemoveDeadStore(GenTree** pTree, LclVarDsc* varDsc, VARSET_TP life, bool* doAgain DEBUGARG(bool* treeModf));
+ bool fgRemoveDeadStore(GenTree** pTree, LclVarDsc* varDsc, VARSET_TP life, bool* doAgain, bool* pStmtInfoDirty DEBUGARG(bool* treeModf));
// For updating liveset during traversal AFTER fgComputeLife has completed
VARSET_VALRET_TP fgGetVarBits (GenTreePtr tree);