src/share/vm/gc_implementation/g1/g1InCSetState.hpp

changeset 9327
f96fcd9e1e1b
parent 7651
c132be0fb74d
     1.1 --- a/src/share/vm/gc_implementation/g1/g1InCSetState.hpp	Tue Feb 23 18:58:36 2016 -0500
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1InCSetState.hpp	Thu Jun 14 09:15:08 2018 -0700
     1.3 @@ -103,7 +103,7 @@
     1.4   public:
     1.5    void set_humongous(uintptr_t index) {
     1.6      assert(get_by_index(index).is_default(),
     1.7 -           err_msg("State at index " INTPTR_FORMAT" should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value()));
     1.8 +           err_msg("State at index " INTPTR_FORMAT " should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value()));
     1.9      set_by_index(index, InCSetState::Humongous);
    1.10    }
    1.11  
    1.12 @@ -113,13 +113,13 @@
    1.13  
    1.14    void set_in_young(uintptr_t index) {
    1.15      assert(get_by_index(index).is_default(),
    1.16 -           err_msg("State at index " INTPTR_FORMAT" should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value()));
    1.17 +           err_msg("State at index " INTPTR_FORMAT " should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value()));
    1.18      set_by_index(index, InCSetState::Young);
    1.19    }
    1.20  
    1.21    void set_in_old(uintptr_t index) {
    1.22      assert(get_by_index(index).is_default(),
    1.23 -           err_msg("State at index " INTPTR_FORMAT" should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value()));
    1.24 +           err_msg("State at index " INTPTR_FORMAT " should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value()));
    1.25      set_by_index(index, InCSetState::Old);
    1.26    }
    1.27  

mercurial