OpenJDK / jdk / jdk
changeset 46960:b498e2123d2f
8186667: InterpreterCodeSize overflows on AIX
Reviewed-by: goetz
author | simonis |
---|---|
date | Wed, 23 Aug 2017 18:24:47 +0200 |
parents | 1863b25339a9 |
children | 9e627420cbf9 |
files | hotspot/src/cpu/ppc/vm/templateInterpreterGenerator_ppc.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hotspot/src/cpu/ppc/vm/templateInterpreterGenerator_ppc.cpp Wed Aug 23 15:47:41 2017 +0200 +++ b/hotspot/src/cpu/ppc/vm/templateInterpreterGenerator_ppc.cpp Wed Aug 23 18:24:47 2017 +0200 @@ -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 */