We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8774404 commit 5d6a073Copy full SHA for 5d6a073
src/hotspot/share/compiler/compilerDefinitions.cpp
@@ -404,14 +404,12 @@ void CompilerConfig::set_compilation_policy_flags() {
404
#endif
405
406
if (CompilerConfig::is_tiered() && CompilerConfig::is_c2_enabled()) {
407
-#ifdef COMPILER2
408
- // Some inlining tuning
409
-#if defined(X86) || defined(AARCH64) || defined(RISCV64) || defined(PPC64) || defined(S390)
+#if defined(COMPILER2) && defined(_LP64)
+ // LP64 specific inlining tuning for C2
410
if (FLAG_IS_DEFAULT(InlineSmallCode)) {
411
FLAG_SET_DEFAULT(InlineSmallCode, 2500);
412
}
413
414
-#endif // COMPILER2
415
416
417
0 commit comments