/hg/icedtea8-forest/hotspot: PR3815: Fix new s390 size_t issue i...
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Wed Nov 25 04:44:48 UTC 2020
changeset e7fd2b284bd0 in /hg/icedtea8-forest/hotspot
details: http://icedtea.classpath.org/hg/icedtea8-forest/hotspot?cmd=changeset;node=e7fd2b284bd0
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Thu Nov 12 03:34:20 2020 +0000
PR3815: Fix new s390 size_t issue in g1ConcurrentMarkObjArrayProcessor.cpp
diffstat:
src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r e3dc4a3d588c -r e7fd2b284bd0 src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp
--- a/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp Tue Nov 10 02:47:05 2020 +0000
+++ b/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp Thu Nov 12 03:34:20 2020 +0000
@@ -41,7 +41,7 @@
}
size_t G1CMObjArrayProcessor::process_array_slice(objArrayOop obj, HeapWord* start_from, size_t remaining) {
- size_t words_to_scan = MIN2(remaining, ObjArrayMarkingStride);
+ size_t words_to_scan = MIN2(remaining, (size_t) ObjArrayMarkingStride);
if (remaining > ObjArrayMarkingStride) {
push_array_slice(start_from + ObjArrayMarkingStride);
More information about the distro-pkg-dev
mailing list