Skip to content
Merged
4 changes: 2 additions & 2 deletions src/coreclr/jit/helperexpansion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static GenTree* SpillExpression(Compiler* comp, GenTree* expr, BasicBlock* exprB
// Return Value:
// Number of the local that replaces the tree
//
unsigned SplitAtTreeAndReplaceItWithLocal(
static unsigned SplitAtTreeAndReplaceItWithLocal(
Compiler* comp, BasicBlock* block, Statement* stmt, GenTree* tree, BasicBlock** topBlock, BasicBlock** bottomBlock)
{
BasicBlock* prevBb = block;
Expand Down Expand Up @@ -1657,7 +1657,7 @@ PhaseStatus Compiler::fgLateCastExpansion()
// Returns:
// Likely class handle or NO_CLASS_HANDLE
//
CORINFO_CLASS_HANDLE PickLikelyClass(Compiler* comp, IL_OFFSET offset, unsigned* likelihood)
static CORINFO_CLASS_HANDLE PickLikelyClass(Compiler* comp, IL_OFFSET offset, unsigned* likelihood)
{
// TODO-InlineCast: consider merging this helper with pickGDV

Expand Down