tsan: Update to LLVM 19.1.0.

This commit is contained in:
Alex Rønne Petersen
2024-09-24 13:47:29 +02:00
committed by Andrew Kelley
parent 7f6b7c5608
commit a40cdad18c
129 changed files with 4880 additions and 2546 deletions

View File

@@ -35,7 +35,9 @@ static const char *ReportTypeDescription(ReportType typ) {
case ReportTypeSignalUnsafe: return "signal-unsafe-call";
case ReportTypeErrnoInSignal: return "errno-in-signal-handler";
case ReportTypeDeadlock: return "lock-order-inversion";
// No default case so compiler warns us if we miss one
case ReportTypeMutexHeldWrongContext:
return "mutex-held-in-wrong-context";
// No default case so compiler warns us if we miss one
}
UNREACHABLE("missing case");
}