# HG changeset patch # User shade # Date 1527667517 -7200 # Node ID f1d4d55fc08f8ff28b147fef9a1d49caf08fa7db # Parent 380796df44a998bb12d4e60a2a5d19a015862a52 Remove obsolete INCLUDE_EPSILONGC guards diff -r 380796df44a9 -r f1d4d55fc08f src/hotspot/share/gc/epsilon/epsilonArguments.cpp --- a/src/hotspot/share/gc/epsilon/epsilonArguments.cpp Wed May 30 09:49:56 2018 +0200 +++ b/src/hotspot/share/gc/epsilon/epsilonArguments.cpp Wed May 30 10:05:17 2018 +0200 @@ -45,7 +45,6 @@ FLAG_SET_DEFAULT(ExitOnOutOfMemoryError, true); } -#if INCLUDE_EPSILONGC if (EpsilonMaxTLABSize < MinTLABSize) { warning("EpsilonMaxTLABSize < MinTLABSize, adjusting it to " SIZE_FORMAT, MinTLABSize); EpsilonMaxTLABSize = MinTLABSize; @@ -55,7 +54,6 @@ warning("Disabling EpsilonElasticTLABDecay because EpsilonElasticTLAB is disabled"); FLAG_SET_DEFAULT(EpsilonElasticTLABDecay, false); } -#endif #ifdef COMPILER2 // Enable loop strip mining: there are still non-GC safepoints, no need to make it worse diff -r 380796df44a9 -r f1d4d55fc08f src/hotspot/share/gc/epsilon/epsilonMemoryPool.hpp --- a/src/hotspot/share/gc/epsilon/epsilonMemoryPool.hpp Wed May 30 09:49:56 2018 +0200 +++ b/src/hotspot/share/gc/epsilon/epsilonMemoryPool.hpp Wed May 30 10:05:17 2018 +0200 @@ -25,11 +25,9 @@ #define SHARE_VM_GC_EPSILON_EPSILONMEMORYPOOL_HPP #include "utilities/macros.hpp" -#if INCLUDE_EPSILONGC #include "gc/epsilon/epsilonHeap.hpp" #include "services/memoryPool.hpp" #include "services/memoryUsage.hpp" -#endif // INCLUDE_EPSILONGC class EpsilonMemoryPool : public CollectedMemoryPool { private: