Always enable cyclic region allocation in ART's region space.

This mechanism was previously enabled in debug mode only.

Test: art/test.py
Test: Device boot test
Bug: 74064045
Change-Id: Ie719109e3f7975369589c0c5dbfe9fde118cfb02
diff --git a/runtime/gc/space/region_space.h b/runtime/gc/space/region_space.h
index ab18b1b..811d6db 100644
--- a/runtime/gc/space/region_space.h
+++ b/runtime/gc/space/region_space.h
@@ -36,7 +36,7 @@
 // region space, but from the last allocated region. This allocation
 // strategy reduces region reuse and should help catch some GC bugs
 // earlier.
-static constexpr bool kCyclicRegionAllocation = kIsDebugBuild;
+static constexpr bool kCyclicRegionAllocation = true;
 
 // A space that consists of equal-sized regions.
 class RegionSpace FINAL : public ContinuousMemMapAllocSpace {