diff options
author | Justin Lebar <jlebar@google.com> | 2016-08-10 01:09:07 +0000 |
---|---|---|
committer | Justin Lebar <jlebar@google.com> | 2016-08-10 01:09:07 +0000 |
commit | bf16db1cf25d0cc9627935953357e969ebfb8f8e (patch) | |
tree | f980b5af45a488b888f24e150acafe94ae0797e2 | |
parent | 852f990ecb969351013ad0d037214b9e4530176c (diff) | |
download | bcm5719-llvm-bf16db1cf25d0cc9627935953357e969ebfb8f8e.tar.gz bcm5719-llvm-bf16db1cf25d0cc9627935953357e969ebfb8f8e.zip |
[Diag] Fix idiom in comment: "on the lam", not "on the lamb".
llvm-svn: 278192
-rw-r--r-- | clang/lib/Basic/Diagnostic.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Basic/Diagnostic.cpp b/clang/lib/Basic/Diagnostic.cpp index 0853ec65d87..1f4316af3ff 100644 --- a/clang/lib/Basic/Diagnostic.cpp +++ b/clang/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"); } |