diff options
| author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-11-14 09:23:38 +0000 |
|---|---|---|
| committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-11-14 09:23:38 +0000 |
| commit | c967d035288c27d82e620a8c200002f640ff6178 (patch) | |
| tree | 22e8759c9df4810144b7c8c41b71d9fa237b481c | |
| parent | 9a91bd82c5aa3897672fabc460d65d4a36429381 (diff) | |
| download | bcm5719-llvm-c967d035288c27d82e620a8c200002f640ff6178.tar.gz bcm5719-llvm-c967d035288c27d82e620a8c200002f640ff6178.zip | |
Improve comments.
llvm-svn: 59294
| -rw-r--r-- | clang/lib/Analysis/GRExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index 38eeaddcb84..cb7c7fe3e18 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/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()); |

