We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 282891d commit 2c9dbdaCopy full SHA for 2c9dbda
src/coreclr/jit/compiler.cpp
@@ -3150,6 +3150,15 @@ void Compiler::compInitOptions(JitFlags* jitFlags)
3150
#endif // DEBUG
3151
}
3152
3153
+ ////////////////// TESTING
3154
+ if (!opts.optRepeat && (JitConfig.JitEnableOptRepeat() != 0))
3155
+ {
3156
+ opts.optRepeat = true;
3157
+ opts.optRepeatCount = JitConfig.JitOptRepeatCount();
3158
+ JITDUMP("\n*************** JitOptRepeat FORCED; repetition count: %d\n\n", opts.optRepeatCount);
3159
+ }
3160
+////////////////// END TESTING
3161
+
3162
#ifdef DEBUG
3163
assert(!codeGen->isGCTypeFixed());
3164
opts.compGcChecks = (JitConfig.JitGCChecks() != 0) || compStressCompile(STRESS_GENERIC_VARN, 5);
0 commit comments