Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/jit/inlinepolicy.cpp')
-rw-r--r--src/coreclr/jit/inlinepolicy.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/coreclr/jit/inlinepolicy.cpp b/src/coreclr/jit/inlinepolicy.cpp
index 0ea9135b82c..dafb34f8781 100644
--- a/src/coreclr/jit/inlinepolicy.cpp
+++ b/src/coreclr/jit/inlinepolicy.cpp
@@ -735,15 +735,6 @@ double DefaultPolicy::DetermineMultiplier()
JITDUMP("\nInline candidate has arg that feeds range check. Multiplier increased to %g.", multiplier);
}
- if (m_ConstArgFeedsIsKnownConst || (m_ArgFeedsIsKnownConst && m_IsPrejitRoot))
- {
- // if we use RuntimeHelpers.IsKnownConstant we most likely expect our function to be always inlined
- // at least in the case of constant arguments. In IsPrejitRoot we don't have callsite info so let's
- // assume we have a constant here in order to avoid "baked" noinline
- multiplier += 20;
- JITDUMP("\nConstant argument feeds RuntimeHelpers.IsKnownConstant. Multiplier increased to %g.", multiplier);
- }
-
if (m_ConstantArgFeedsConstantTest > 0)
{
multiplier += 3.0;