[llvm] [llvm-exegesis] Use explicit error classes for different snippet crashes (PR #74210)

Clement Courbet via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 11 01:11:02 PST 2023


================
@@ -575,7 +570,7 @@ Expected<Benchmark> BenchmarkRunner::runConfiguration(
   auto NewMeasurements = runMeasurements(**Executor);
 
   if (Error E = NewMeasurements.takeError()) {
-    if (!E.isA<SnippetCrash>())
+    if (!E.isA<SnippetExecutionFailure>())
----------------
legrosbuffle wrote:

You should probably rebase.

https://github.com/llvm/llvm-project/pull/74210


More information about the llvm-commits mailing list