Merge pull request #12140 from liamwhite/qcr-unreachable
query_cache: demote report synced unreachable to assert
This commit is contained in:
commit
093eb075a6
|
@ -266,7 +266,7 @@ void QueryCacheBase<Traits>::CounterReport(GPUVAddr addr, QueryType counter_type
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (False(query_base->flags & QueryFlagBits::IsFinalValueSynced)) [[unlikely]] {
|
if (False(query_base->flags & QueryFlagBits::IsFinalValueSynced)) [[unlikely]] {
|
||||||
UNREACHABLE();
|
ASSERT(false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
query_base->value += streamer->GetAmmendValue();
|
query_base->value += streamer->GetAmmendValue();
|
||||||
|
|
Reference in New Issue