diff options
author | Anna Zaks <ganna@apple.com> | 2012-03-08 23:16:35 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-03-08 23:16:35 +0000 |
commit | 66253352131e3e7a22b3bfd0e180607aa2bfb988 (patch) | |
tree | f58c3f6850167ab39a0bb528a7e4adab986d6585 /test/Analysis/inline-unique-reports.c | |
parent | d2776613703a516f107decc06b38a0b60a10542c (diff) |
[analyzer] Rework inlining related command line options.
- Remove -analyzer-inline-call.
- Add -analyzer-ipa=[none|inlining]
- Add -analyzer-inlining-mode to allow experimentation for
different performance tuning methods.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/inline-unique-reports.c')
-rw-r--r-- | test/Analysis/inline-unique-reports.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/inline-unique-reports.c b/test/Analysis/inline-unique-reports.c index c99a303335..1cc3130c47 100644 --- a/test/Analysis/inline-unique-reports.c +++ b/test/Analysis/inline-unique-reports.c @@ -1,4 +1,4 @@ -// RUN: %clang --analyze %s -Xclang -analyzer-inline-call -o %t > /dev/null 2>&1 +// RUN: %clang --analyze %s -Xclang -analyzer-ipa=inlining -o %t > /dev/null 2>&1 // RUN: FileCheck -input-file %t %s static inline bug(int *p) { |