return condition when *this is precise zero.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@266885
138bc75d-0d04-0410-961f-
82ee72b054a4
+2018-12-07 Bin Cheng <bin.cheng@linux.alibaba.com>
+
+ * profile-count.h (profile_count::oeprator>=): Fix typo by inverting
+ return condition when *this is precise zero.
+
2018-12-07 Jakub Jelinek <jakub@redhat.com>
PR target/85593
if (other == profile_count::zero ())
return true;
if (*this == profile_count::zero ())
- return !(other == profile_count::zero ());
+ return (other == profile_count::zero ());
gcc_checking_assert (compatible_p (other));
return m_val >= other.m_val;
}