create a temporary object for it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122161
91177308-0d34-0410-b5e6-
96231b3b80d8
// time a function is called those values may not be current.
ExplodedNodeSet Tmp;
- if (InitEx)
- Visit(InitEx, Pred, Tmp);
- else
+ if (InitEx) {
+ if (VD->getType()->isReferenceType() && !InitEx->isLValue()) {
+ CreateCXXTemporaryObject(InitEx, Pred, Tmp);
+ } else
+ Visit(InitEx, Pred, Tmp);
+ } else
Tmp.Add(Pred);
ExplodedNodeSet Tmp2;
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -analyzer-constraints=range -verify %s
-// XFAIL: *
+
typedef typeof(sizeof(int)) size_t;
void malloc (size_t);