We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cccf21d commit 3ab64ceCopy full SHA for 3ab64ce
runtime/compiler/x/codegen/J9CodeGenerator.cpp
@@ -73,11 +73,11 @@ J9::X86::CodeGenerator::initialize()
73
74
cg->setAheadOfTimeCompile(new (cg->trHeapMemory()) TR::AheadOfTimeCompile(cg));
75
76
- if (!TR::Compiler->om.canGenerateArraylets() && !TR::Compiler->om.isOffHeapAllocationEnabled())
77
- {
+ if (!TR::Compiler->om.canGenerateArraylets())
78
cg->setSupportsReferenceArrayCopy();
+
79
+ if (!TR::Compiler->om.canGenerateArraylets() && !TR::Compiler->om.isOffHeapAllocationEnabled())
80
cg->setSupportsInlineStringLatin1Inflate();
- }
81
82
if (comp->requiresSpineChecks())
83
{
0 commit comments