src/share/vm/opto/type.hpp

changeset 8982
8f1acbb637e3
parent 8945
3b6372514697
parent 8656
7ca49bca3c2a
child 9041
95a08233f46c
child 9333
2fccf735a116
     1.1 --- a/src/share/vm/opto/type.hpp	Mon Jun 12 13:58:09 2017 -0400
     1.2 +++ b/src/share/vm/opto/type.hpp	Fri Jun 30 23:45:31 2017 -0700
     1.3 @@ -209,11 +209,11 @@
     1.4    static int cmp( const Type *const t1, const Type *const t2 );
     1.5    // Test for higher or equal in lattice
     1.6    // Variant that drops the speculative part of the types
     1.7 -  int higher_equal(const Type *t) const {
     1.8 +  bool higher_equal(const Type *t) const {
     1.9      return !cmp(meet(t),t->remove_speculative());
    1.10    }
    1.11    // Variant that keeps the speculative part of the types
    1.12 -  int higher_equal_speculative(const Type *t) const {
    1.13 +  bool higher_equal_speculative(const Type *t) const {
    1.14      return !cmp(meet_speculative(t),t);
    1.15    }
    1.16  

mercurial