diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-03-19 23:48:41 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-03-19 23:48:41 +0000 |
commit | e7d78882b4ca08b9e24f140dbb97875310f67ec7 (patch) | |
tree | d6b4cc7071d8c79a50986da762cc9955e8e46fba /clang/lib/Analysis/CFG.cpp | |
parent | 0a2ac9052505566db08e466bd21072f0962f09d3 (diff) | |
download | bcm5719-llvm-e7d78882b4ca08b9e24f140dbb97875310f67ec7.tar.gz bcm5719-llvm-e7d78882b4ca08b9e24f140dbb97875310f67ec7.zip |
Fix crash when querying the CFG reported when using the thread safety analysis
on code using multi-dimensional arrays. Fix by DeLesley Hutchins, and reported in
PR 12271.
llvm-svn: 153067
Diffstat (limited to 'clang/lib/Analysis/CFG.cpp')
-rw-r--r-- | clang/lib/Analysis/CFG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/CFG.cpp b/clang/lib/Analysis/CFG.cpp index 0a844a03767..24ca9588271 100644 --- a/clang/lib/Analysis/CFG.cpp +++ b/clang/lib/Analysis/CFG.cpp @@ -3087,7 +3087,7 @@ CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const { const VarDecl *var = cast<CFGAutomaticObjDtor>(this)->getVarDecl(); QualType ty = var->getType(); ty = ty.getNonReferenceType(); - if (const ArrayType *arrayType = astContext.getAsArrayType(ty)) { + while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) { ty = arrayType->getElementType(); } const RecordType *recordType = ty->getAs<RecordType>(); |