diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-10-10 12:54:05 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-10-10 12:54:05 +0000 |
commit | b8da98a2182d2c69c72136b9a9ebabd4694f3d6b (patch) | |
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
-rw-r--r-- | lib/AST/Expr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index 48a48d0d4f..7cfbd9e2fb 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp @@ -274,7 +274,8 @@ DeclRefExpr::DeclRefExpr(NestedNameSpecifierLoc QualifierLoc, if (InstantiationDependent) setInstantiationDependent(true); } - + DeclRefExprBits.HadMultipleCandidates = 0; + computeDependence(); } |