hotspot/src/os/posix/vm/os_posix.cpp
changeset 46622 910fc72c03e8
parent 46620 750c6edff33b
child 46625 edefffab74e2
--- a/hotspot/src/os/posix/vm/os_posix.cpp	Tue Jul 04 17:44:30 2017 +0200
+++ b/hotspot/src/os/posix/vm/os_posix.cpp	Mon Apr 24 09:14:09 2017 +0200
@@ -322,7 +322,7 @@
     julong lower_limit = min_allocation_size;
     while ((upper_limit - lower_limit) > min_allocation_size) {
       julong temp_limit = ((upper_limit - lower_limit) / 2) + lower_limit;
-      temp_limit = align_down_(temp_limit, min_allocation_size);
+      temp_limit = align_down(temp_limit, min_allocation_size);
       if (is_allocatable(temp_limit)) {
         lower_limit = temp_limit;
       } else {