diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-11-01 06:46:05 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-11-01 06:46:05 +0000 |
commit | 81bc7d07b701042371a5723b6f394cd2482ed7be (patch) | |
tree | 07db13a854264efeb764e6d919f532780b12d3ac /test/Analysis/method-call.cpp | |
parent | 66cbcf3f150d075fead7c5935b6e9c61a32cf3d4 (diff) |
Make all CXXConstructExpr's block-level expressions. This is required by
method inlining. Temporarily fail a test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117907 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/method-call.cpp')
-rw-r--r-- | test/Analysis/method-call.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Analysis/method-call.cpp b/test/Analysis/method-call.cpp index 47f14447d6..26b4a2fc13 100644 --- a/test/Analysis/method-call.cpp +++ b/test/Analysis/method-call.cpp @@ -1,4 +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; } |