aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/method-call.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2010-05-06 02:59:29 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2010-05-06 02:59:29 +0000
commit7b99d12b4ca67fccdf5090761ba257732e954e75 (patch)
treefb146497ef8e4e6e9eb79590f986de6edbcfdaa1 /test/Analysis/method-call.cpp
parent13c8577201e4fc0ddac5f09d05fd1778832137d1 (diff)
Make -analyzer-inline-call not a separate analysis. Instead it's a boolean
flag now, and can be used with other analyses. Only turned it on for C++ methods for now. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103160 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/method-call.cpp')
-rw-r--r--test/Analysis/method-call.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/method-call.cpp b/test/Analysis/method-call.cpp
index dd891596c5..47f14447d6 100644
--- a/test/Analysis/method-call.cpp
+++ b/test/Analysis/method-call.cpp
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store region -verify %s
+// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-inline-call -analyzer-store region -verify %s
struct A {
int x;
A(int a) { x = a; }