aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/GRExprEngine.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2008-11-14 09:23:38 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2008-11-14 09:23:38 +0000
commit37d682ac042d232d377a5f7bc6266149c82584a4 (patch)
tree54b7d1f7b5ddbddb7734152ef9dd8449f67e1f92 /lib/Analysis/GRExprEngine.cpp
parent8f646002d8493ad7647d28b0acc7be425360f990 (diff)
Improve comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59294 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r--lib/Analysis/GRExprEngine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp
index 38eeaddcb8..cb7c7fe3e1 100644
--- a/lib/Analysis/GRExprEngine.cpp
+++ b/lib/Analysis/GRExprEngine.cpp
@@ -1672,7 +1672,7 @@ void GRExprEngine::VisitCast(Expr* CastE, Expr* Ex, NodeTy* Pred, NodeSet& Dst){
continue;
}
- // StoreManager casts array to different values.
+ // Check for casts from array type to pointer type.
if (ExTy->isArrayType()) {
assert(T->isPointerType() || T->isReferenceType());