src/hotspot/share/gc/shared/genArguments.cpp
changeset 55308 871bc449ce06
parent 54983 81becad91321
child 58060 44f3609f46af
equal deleted inserted replaced
55307:ed12027517c0 55308:871bc449ce06
    88   if (MaxHeapSize < smallest_heap_size) {
    88   if (MaxHeapSize < smallest_heap_size) {
    89     FLAG_SET_ERGO(MaxHeapSize, smallest_heap_size);
    89     FLAG_SET_ERGO(MaxHeapSize, smallest_heap_size);
    90   }
    90   }
    91   // If needed, synchronize MinHeapSize size and InitialHeapSize
    91   // If needed, synchronize MinHeapSize size and InitialHeapSize
    92   if (MinHeapSize < smallest_heap_size) {
    92   if (MinHeapSize < smallest_heap_size) {
    93     MinHeapSize = smallest_heap_size;
    93     FLAG_SET_ERGO(MinHeapSize, smallest_heap_size);
    94     if (InitialHeapSize < MinHeapSize) {
    94     if (InitialHeapSize < MinHeapSize) {
    95       FLAG_SET_ERGO(InitialHeapSize, smallest_heap_size);
    95       FLAG_SET_ERGO(InitialHeapSize, smallest_heap_size);
    96     }
    96     }
    97   }
    97   }
    98 
    98