diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-08 18:19:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-08 18:19:27 +0000 |
commit | 63d65f873fdfcb04b216ea9c648d1df5992aed1c (patch) | |
tree | 04893bf1ec4c6a143233a4efb96630d1d1d283a3 /lib/Sema/Sema.h | |
parent | c4f1fb125d4fe2c8879030d6f6e8b2f75cb681f1 (diff) |
Fix PR4922, where Sema would complete tentative definitions in nondeterminstic
order because it was doing so while iterating over a densemap.
There are still similar problems in other places, for example
WeakUndeclaredIdentifiers is still written to the PCH file in a nondeterminstic
order, and we emit warnings about #pragma weak in nondeterminstic order.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81236 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.h')
-rw-r--r-- | lib/Sema/Sema.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h index 7c4bcab2de..ee893e2e0d 100644 --- a/lib/Sema/Sema.h +++ b/lib/Sema/Sema.h @@ -266,6 +266,7 @@ public: /// declaration, and only the most recent tentative declaration for /// a given variable will be recorded here. llvm::DenseMap<DeclarationName, VarDecl *> TentativeDefinitions; + std::vector<DeclarationName> TentativeDefinitionList; /// WeakUndeclaredIdentifiers - Identifiers contained in /// #pragma weak before declared. rare. may alias another |