OpenJDK / valhalla / valhalla
changeset 47432:02ec88e82173 mvt
[MVT] Workaround fix for 8189802
author | thartmann |
---|---|
date | Mon, 23 Oct 2017 16:59:49 +0200 |
parents | b704aecd02e6 |
children | 9d869a151b30 |
files | src/hotspot/share/opto/graphKit.cpp |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/hotspot/share/opto/graphKit.cpp Mon Oct 23 10:40:30 2017 -0400 +++ b/src/hotspot/share/opto/graphKit.cpp Mon Oct 23 16:59:49 2017 +0200 @@ -3661,8 +3661,9 @@ if (!vk->flatten_array()) { // Non-flattened value type arrays need to be initialized with default value type oops initialize_value_type_array(javaoop, length, elem_klass->as_value_klass(), nargs); - InitializeNode* init = alloc->initialization(); - init->set_complete_with_arraycopy(); + // TODO re-enable once JDK-8189802 is fixed + // InitializeNode* init = alloc->initialization(); + //init->set_complete_with_arraycopy(); } }