Skip to content

Commit d27b451

Browse files
authored
Merge pull request #22330 from ehsankianifar/Z_disableITableEntryCheckInJit
Z: disable iTable check in jit
2 parents 1665fb8 + 8115957 commit d27b451

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

runtime/compiler/z/codegen/J9CodeGenerator.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,12 @@ J9::Z::CodeGenerator::initialize()
290290
}
291291

292292
cg->setIgnoreDecimalOverflowException(false);
293+
294+
// Disable last iTable cache by default.
295+
static bool enableLastITableCache = feGetEnv("TR_EnableLastITableCache") != NULL;
296+
if (!enableLastITableCache)
297+
comp->setOption(TR_DisableLastITableCache);
298+
293299
}
294300

295301
bool

0 commit comments

Comments
 (0)