File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/hotspot/share/gc/shenandoah/mode
test/hotspot/jtreg/gc/shenandoah/options Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class ShenandoahGenerationalMode : public ShenandoahMode {
3232 virtual void initialize_flags () const ;
3333 virtual const char * name () { return " Generational" ; }
3434 virtual bool is_diagnostic () { return false ; }
35- virtual bool is_experimental () { return true ; }
35+ virtual bool is_experimental () { return false ; }
3636 virtual bool is_generational () { return true ; }
3737};
3838
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ enum Mode {
4747 public static void main (String [] args ) throws Exception {
4848 testWith ("-XX:ShenandoahGCMode=satb" , Mode .PRODUCT );
4949 testWith ("-XX:ShenandoahGCMode=passive" , Mode .DIAGNOSTIC );
50- testWith ("-XX:ShenandoahGCMode=generational" , Mode .EXPERIMENTAL );
50+ testWith ("-XX:ShenandoahGCMode=generational" , Mode .PRODUCT );
5151 }
5252
5353 private static void testWith (String h , Mode mode ) throws Exception {
You can’t perform that action at this time.
0 commit comments