diff --git a/compiler/control/OMROptions.hpp b/compiler/control/OMROptions.hpp index 6738bb428c5..9e44871db15 100644 --- a/compiler/control/OMROptions.hpp +++ b/compiler/control/OMROptions.hpp @@ -1577,6 +1577,7 @@ class OMR_EXTENSIBLE Options int32_t getBigCalleeThresholdForColdCallsAtHot() const {return _bigCalleeThresholdForColdCallsAtHot;} int32_t getBigCalleeFrequencyCutoffAtHot() const {return _bigCalleeFreqCutoffAtHot;} int32_t getBigCalleeScorchingOptThreshold() const {return _bigCalleeScorchingOptThreshold;} + void setBigCalleeScorchingOptThreshold(int32_t t) { _bigCalleeScorchingOptThreshold = t; } int32_t getLargeCompiledMethodExemptionFreqCutoff() const {return _largeCompiledMethodExemptionFreqCutoff;} int32_t getMaxSzForVPInliningWarm() const {return _maxSzForVPInliningWarm;} int32_t getInlinerVeryLargeCompiledMethodThreshold() const {return _inlinerVeryLargeCompiledMethodThreshold;}