[PATCH] D26837: [analyzer] Litter the SVal/SymExpr/MemRegion class hierarchy with asserts.
Balogh, Ádám via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 5 01:10:20 PST 2016
baloghadamsoftware added inline comments.
================
Comment at: include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h:282
+ static inline bool isCompoundType(QualType T) {
+ return T->isArrayType() || T->isRecordType() ||
----------------
Could you please move this function into a separate patch? If I am right, D27202 depends only on this function which could be accepted earlier than this whole patch.
https://reviews.llvm.org/D26837
More information about the cfe-commits
mailing list