I have no idea why Clang's warning doesn't fire here, looks like a Clang
bug. I'll investigate that separately.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@198677
91177308-0d34-0410-b5e6-
96231b3b80d8
/// within the region. The adjusted count, then, is the value of the counter
/// at the end of the region.
uint64_t getAdjustedCount() const {
- assert(Adjust > 0 || (uint64_t)(-Adjust) <= Count && "Negative count");
+ assert((Adjust > 0 || (uint64_t)(-Adjust) <= Count) && "Negative count");
return Count + Adjust;
}
/// Get the value of the counter in this region's parent, ie, the region that