commit | b8da98a2182d2c69c72136b9a9ebabd4694f3d6b | [log] [tgz] |
---|---|---|
author | Benjamin Kramer <benny.kra@googlemail.com> | Mon Oct 10 12:54:05 2011 +0000 |
committer | Benjamin Kramer <benny.kra@googlemail.com> | Mon Oct 10 12:54:05 2011 +0000 |
tree | d4eaa055f522e5412dee84864865d8dab5c74bc8 | |
parent | e16da07474c376fbbeda2d4238cf35e2bd664d5a [diff] |
Another case of HadMultipleCandidates being used uninitialized. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141532 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index 48a48d0..7cfbd9e 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp
@@ -274,7 +274,8 @@ if (InstantiationDependent) setInstantiationDependent(true); } - + DeclRefExprBits.HadMultipleCandidates = 0; + computeDependence(); }