aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/clang/Analysis/PathSensitive/RValues.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Analysis/PathSensitive/RValues.h b/include/clang/Analysis/PathSensitive/RValues.h
index 884f467aef..9034c0d4ae 100644
--- a/include/clang/Analysis/PathSensitive/RValues.h
+++ b/include/clang/Analysis/PathSensitive/RValues.h
@@ -161,7 +161,8 @@ public:
}
static inline bool IsLValType(QualType T) {
- return T->isPointerType() || T->isObjCQualifiedIdType();
+ return T->isPointerType() || T->isObjCQualifiedIdType()
+ || T->isBlockPointerType();
}
};