From: Justin Lebar Date: Wed, 10 Aug 2016 01:09:07 +0000 (+0000) Subject: [Diag] Fix idiom in comment: "on the lam", not "on the lamb". X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=166c4abbe8e1c2b229a240509cfa7f6c457c0b13;p=clang [Diag] Fix idiom in comment: "on the lam", not "on the lamb". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@278192 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Basic/Diagnostic.cpp b/lib/Basic/Diagnostic.cpp index 0853ec65d8..1f4316af3f 100644 --- a/lib/Basic/Diagnostic.cpp +++ b/lib/Basic/Diagnostic.cpp @@ -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"); }