# HG changeset patch # User asaha # Date 1391409903 28800 # Node ID 46fa2940e6861df18a107b6b83a2df85239e5ec7 # Parent 4536a5ffd9b133a2eb8992899af6219bb0fd44f8# Parent cb39165c4a65bbff8db356df411e762f9e5423b8 Merge diff -r cb39165c4a65 -r 46fa2940e686 .hgtags --- a/.hgtags Sat Feb 01 18:21:10 2014 -0800 +++ b/.hgtags Sun Feb 02 22:45:03 2014 -0800 @@ -417,3 +417,9 @@ 32f017489ba5dd1bedabb9fa1d26bcc74d0a72b6 hs25-b69 35038da7bb9ddd367a0a6bf926dfb281aee1d554 jdk8-b127 874c0b4a946c362bbf20d37c2a564b39093152e6 jdk8-b128 +4a35ef38e2a7bc64df20c7700ba69b37e3ddb8b5 jdk8u5-b01 +e5561d89fe8bfc79cd6c8fcc36d270cc6a49ec6e jdk8u5-b02 +2f9eb9fcab6c42c8c84ddb44170ea33235116d84 jdk8u5-b03 +5ac720d47ab83f8eb2f5fe3641667823a0298f41 jdk8u5-b04 +b90de55aca30678ab0fec05d6a61bb3468b783d2 jdk8u5-b05 +956c0e048ef29ee9a8026fb05858abe64b4e0ceb jdk8u5-b06 diff -r cb39165c4a65 -r 46fa2940e686 .jcheck/conf --- a/.jcheck/conf Sat Feb 01 18:21:10 2014 -0800 +++ b/.jcheck/conf Sun Feb 02 22:45:03 2014 -0800 @@ -1,1 +1,2 @@ project=jdk8 +bugids=dup diff -r cb39165c4a65 -r 46fa2940e686 THIRD_PARTY_README --- a/THIRD_PARTY_README Sat Feb 01 18:21:10 2014 -0800 +++ b/THIRD_PARTY_README Sun Feb 02 22:45:03 2014 -0800 @@ -1399,13 +1399,13 @@ ------------------------------------------------------------------------------- -%% This notice is provided with respect to Little CMS 2.4, which may be +%% This notice is provided with respect to Little CMS 2.5, which may be included with JRE 8, JDK 8, and OpenJDK 8. --- begin of LICENSE --- Little CMS -Copyright (c) 1998-2010 Marti Maria Saguer +Copyright (c) 1998-2011 Marti Maria Saguer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff -r cb39165c4a65 -r 46fa2940e686 make/hotspot_version --- a/make/hotspot_version Sat Feb 01 18:21:10 2014 -0800 +++ b/make/hotspot_version Sun Feb 02 22:45:03 2014 -0800 @@ -34,8 +34,8 @@ HOTSPOT_VM_COPYRIGHT=Copyright 2014 HS_MAJOR_VER=25 -HS_MINOR_VER=0 -HS_BUILD_NUMBER=69 +HS_MINOR_VER=5 +HS_BUILD_NUMBER=01 JDK_MAJOR_VER=1 JDK_MINOR_VER=8 diff -r cb39165c4a65 -r 46fa2940e686 src/share/vm/oops/objArrayKlass.cpp --- a/src/share/vm/oops/objArrayKlass.cpp Sat Feb 01 18:21:10 2014 -0800 +++ b/src/share/vm/oops/objArrayKlass.cpp Sun Feb 02 22:45:03 2014 -0800 @@ -269,7 +269,7 @@ if (element_is_null || (new_val->klass())->is_subtype_of(bound)) { bs->write_ref_field_pre(p, new_val); - *p = *from; + *p = element; } else { // We must do a barrier to cover the partial copy. const size_t pd = pointer_delta(p, dst, (size_t)heapOopSize);