From 574b7079b96703a748f89ef5adb7dc3e26b8f7fc Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Thu, 2 Dec 2021 22:49:08 +0100 Subject: Merge llvm-project main llvmorg-14-init-11187-g222442ec2d71 This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvmorg-14-init-11187-g222442ec2d71. PR: 261742 MFC after: 2 weeks (cherry picked from commit 4824e7fd18a1223177218d4aec1b3c6c5c4a444e) --- contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp') diff --git a/contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp b/contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp index 6df5a4a64d51..60530d7f7a00 100644 --- a/contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp +++ b/contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp @@ -444,7 +444,8 @@ class MetadataLoader::MetadataLoaderImpl { uint64_t GlobalDeclAttachmentPos = 0; #ifndef NDEBUG - /// Sanity check that we end up parsing all of the global decl attachments. + /// Baisic correctness check that we end up parsing all of the global decl + /// attachments. unsigned NumGlobalDeclAttachSkipped = 0; unsigned NumGlobalDeclAttachParsed = 0; #endif @@ -917,7 +918,7 @@ Expected MetadataLoader::MetadataLoaderImpl::loadGlobalDeclAttachments() { case BitstreamEntry::Error: return error("Malformed block"); case BitstreamEntry::EndBlock: - // Sanity check that we parsed them all. + // Check that we parsed them all. assert(NumGlobalDeclAttachSkipped == NumGlobalDeclAttachParsed); return true; case BitstreamEntry::Record: @@ -929,7 +930,7 @@ Expected MetadataLoader::MetadataLoaderImpl::loadGlobalDeclAttachments() { return MaybeCode.takeError(); if (MaybeCode.get() != bitc::METADATA_GLOBAL_DECL_ATTACHMENT) { // Anything other than a global decl attachment signals the end of - // these records. sanity check that we parsed them all. + // these records. Check that we parsed them all. assert(NumGlobalDeclAttachSkipped == NumGlobalDeclAttachParsed); return true; } -- cgit v1.2.3