diff options
author | Jordan Rose <jordan_rose@apple.com> | 2012-08-21 21:44:07 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2012-08-21 21:44:07 +0000 |
commit | ee04959f88e26ed38dccf4aed2ff10cad1f703c9 (patch) | |
tree | 12e547a6b0d350fdead7ec1f97e1a8ebb549d9fa /test/Analysis/inline4.c | |
parent | 59c91c8d0000af8f8a1022ee0f0eec46c397b347 (diff) | |
download | clang-ee04959f88e26ed38dccf4aed2ff10cad1f703c9.tar.gz |
[analyzer] -analyzer-ipa=inlining is now the default. Remove it from tests.
The actual change here is a little more complicated than the summary above.
What we want to do is have our generic inlining tests run under whatever
mode is the default. However, there are some tests that depend on the
presence of C++ inlining, which still has some rough edges. These tests have
been explicitly marked as -analyzer-ipa=inlining in preparation for a new
mode that limits inlining to C functions and blocks. This will be the
default until the false positives for C++ have been brought down to
manageable levels.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162317 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/inline4.c')
-rw-r--r-- | test/Analysis/inline4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/inline4.c b/test/Analysis/inline4.c index e7715e01dd..1dcebbe64d 100644 --- a/test/Analysis/inline4.c +++ b/test/Analysis/inline4.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-ipa=inlining -analyzer-store region -verify %s +// RUN: %clang_cc1 -analyze -analyzer-checker=core -verify %s int g(int a) { return a; |