diff options
author | Anna Zaks <ganna@apple.com> | 2013-01-24 23:15:30 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-01-24 23:15:30 +0000 |
commit | 6bab4ef4e83ffd7f42e00b5ead2bcfead78b51b4 (patch) | |
tree | f45a8728f0eb3fb52dcd9f82c18869eff9ae1a0a /clang/test/Analysis/inline.cpp | |
parent | c7f5e69e5024f6d4a34a4b77c018aee82354cc44 (diff) | |
download | bcm5719-llvm-6bab4ef4e83ffd7f42e00b5ead2bcfead78b51b4.tar.gz bcm5719-llvm-6bab4ef4e83ffd7f42e00b5ead2bcfead78b51b4.zip |
[analyzer] Replace "-analyzer-ipa" with "-analyzer-config ipa".
The idea is to eventually place all analyzer options under
"analyzer-config". In addition, this lays the ground for introduction of
a high-level analyzer mode option, which will influence the
default setting for IPAMode.
llvm-svn: 173385
Diffstat (limited to 'clang/test/Analysis/inline.cpp')
-rw-r--r-- | clang/test/Analysis/inline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Analysis/inline.cpp b/clang/test/Analysis/inline.cpp index ddcf5d01c34..873b046eb1a 100644 --- a/clang/test/Analysis/inline.cpp +++ b/clang/test/Analysis/inline.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,debug.ExprInspection -analyzer-ipa=inlining -verify %s +// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,debug.ExprInspection -analyzer-config ipa=inlining -verify %s void clang_analyzer_eval(bool); void clang_analyzer_checkInlined(bool); @@ -192,7 +192,7 @@ namespace Invalidation { virtual void touchV2(int &x) const; int test() const { - // We were accidentally not invalidating under -analyzer-ipa=inlining + // We were accidentally not invalidating under inlining // at one point for virtual methods with visible definitions. int a, b, c, d; touch(a); |