8186667: InterpreterCodeSize overflows on AIX

Reviewed-by: goetz
This commit is contained in:
Volker Simonis 2017-08-23 18:24:47 +02:00
parent c1f2527986
commit d1b59ed425

View File

@ -56,7 +56,7 @@
// if too small.
// Run with +PrintInterpreter to get the VM to print out the size.
// Max size with JVMTI
int TemplateInterpreter::InterpreterCodeSize = 230*K;
int TemplateInterpreter::InterpreterCodeSize = 256*K;
#ifdef PRODUCT
#define BLOCK_COMMENT(str) /* nothing */