forked from OSchip/llvm-project
Fix latent bug. This can't actually manifest at the moment, but is a time-bomb
for the next time someone adds something to this function. llvm-svn: 208270
This commit is contained in:
parent
e08a91ecd2
commit
93914a9518
|
@ -7977,7 +7977,7 @@ std::string ASTReader::getOwningModuleNameForDiagnostic(const Decl *D) {
|
|||
void ASTReader::finishPendingActions() {
|
||||
while (!PendingIdentifierInfos.empty() || !PendingDeclChains.empty() ||
|
||||
!PendingMacroIDs.empty() || !PendingDeclContextInfos.empty() ||
|
||||
!PendingOdrMergeChecks.empty()) {
|
||||
!PendingUpdateRecords.empty() || !PendingOdrMergeChecks.empty()) {
|
||||
// If any identifiers with corresponding top-level declarations have
|
||||
// been loaded, load those declarations now.
|
||||
typedef llvm::DenseMap<IdentifierInfo *, SmallVector<Decl *, 2> >
|
||||
|
|
Loading…
Reference in New Issue