================
@@ -827,6 +836,52 @@ Error 
RawInstrProfReader<IntPtrT>::readRawBitmapBytes(InstrProfRecord &Record) {
   return success();
 }
 
+template <class IntPtrT>
+Error RawInstrProfReader<IntPtrT>::readRawUniformCounters(
+    InstrProfRecord &Record) {
+  Record.UniformCounts.clear();
+
+  if (UniformCountersStart == UniformCountersEnd)
+    return success();
+
----------------
arsenm wrote:

Missing tests for all these error conditions?

https://github.com/llvm/llvm-project/pull/190708
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to