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/inline3.c | |
parent | 59c91c8d0000af8f8a1022ee0f0eec46c397b347 (diff) |
[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/inline3.c')
-rw-r--r-- | test/Analysis/inline3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/inline3.c b/test/Analysis/inline3.c index 968d82acd6..05f56fbc58 100644 --- a/test/Analysis/inline3.c +++ b/test/Analysis/inline3.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 // Test when entering f1(), we set the right AnalysisDeclContext to Environment. // Otherwise, block-level expr '1 && a' would not be block-level. |