src/share/vm/opto/node.hpp

changeset 3049
95134e034042
parent 3040
c7b60b601eb4
child 3051
11211f7cb5a0
     1.1 --- a/src/share/vm/opto/node.hpp	Wed Aug 10 14:06:57 2011 -0700
     1.2 +++ b/src/share/vm/opto/node.hpp	Thu Aug 11 12:08:11 2011 -0700
     1.3 @@ -637,7 +637,8 @@
     1.4      Flag_is_Branch           = Flag_is_cisc_alternate << 1,
     1.5      Flag_is_dead_loop_safe   = Flag_is_Branch << 1,
     1.6      Flag_may_be_short_branch = Flag_is_dead_loop_safe << 1,
     1.7 -    _max_flags = (Flag_may_be_short_branch << 1) - 1 // allow flags combination
     1.8 +    Flag_avoid_back_to_back  = Flag_may_be_short_branch << 1,
     1.9 +    _max_flags = (Flag_avoid_back_to_back << 1) - 1 // allow flags combination
    1.10    };
    1.11  
    1.12  private:

mercurial