diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-11-01 09:09:44 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-11-01 09:09:44 +0000 |
commit | 7ce351db56fbce162a3b650518ce05b5c61ebf36 (patch) | |
tree | b8e666185681f67251775ca0ef80be4790669b4d /test/Analysis/method-call.cpp | |
parent | 81bc7d07b701042371a5723b6f394cd2482ed7be (diff) |
Now initializer of C++ record type is visited as block-level expr.
Let the destination of AggExprVisitor be an explicit MemRegion.
Reenable the test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117908 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/method-call.cpp')
-rw-r--r-- | test/Analysis/method-call.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/method-call.cpp b/test/Analysis/method-call.cpp index 26b4a2fc13..a766da9aae 100644 --- a/test/Analysis/method-call.cpp +++ b/test/Analysis/method-call.cpp @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-inline-call -analyzer-store region -verify %s -// XFAIL: * + struct A { int x; A(int a) { x = a; } |