]> granicus.if.org Git - clang/commitdiff
[Diag] Fix idiom in comment: "on the lam", not "on the lamb".
authorJustin Lebar <jlebar@google.com>
Wed, 10 Aug 2016 01:09:07 +0000 (01:09 +0000)
committerJustin Lebar <jlebar@google.com>
Wed, 10 Aug 2016 01:09:07 +0000 (01:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@278192 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Basic/Diagnostic.cpp

index 0853ec65d87958a86ef87bba7ea2e33dec9a561a..1f4316af3ffbc89806f4e07a8c88cdf63c9456fe 100644 (file)
@@ -1010,7 +1010,7 @@ PartialDiagnostic::StorageAllocator::StorageAllocator() {
 PartialDiagnostic::StorageAllocator::~StorageAllocator() {
   // Don't assert if we are in a CrashRecovery context, as this invariant may
   // be invalidated during a crash.
-  assert((NumFreeListEntries == NumCached || 
-          llvm::CrashRecoveryContext::isRecoveringFromCrash()) && 
-         "A partial is on the lamb");
+  assert((NumFreeListEntries == NumCached ||
+          llvm::CrashRecoveryContext::isRecoveringFromCrash()) &&
+         "A partial is on the lam");
 }