In `GCArguments::initialize_heap_flags_and_sizes`
The triplets, min, init, and max heap size, need to satisfy an ordering constraint.
Currently, the following two pairs are checked together,
InitialHeapSize & MaxHeapSize
MinHeapSize & MaxHeapSize
However, InitialHeapSize & MinHeapSize is many-line below.
Move them together.
The triplets, min, init, and max heap size, need to satisfy an ordering constraint.
Currently, the following two pairs are checked together,
InitialHeapSize & MaxHeapSize
MinHeapSize & MaxHeapSize
However, InitialHeapSize & MinHeapSize is many-line below.
Move them together.