Anna Zaks | d5478fd | 2014-08-29 20:01:38 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store=region -analyzer-disable-all-checks -verify %s |
| 2 | // RUN: %clang_cc1 -analyze -analyzer-disable-all-checks -analyzer-checker=core -analyzer-store=region -verify %s |
| 3 | // RUN: not %clang_cc1 -analyze -analyzer-checker=core -analyzer-store=region -analyzer-disable-checker -verify %s 2>&1 | FileCheck %s |
| 4 | // expected-no-diagnostics |
| 5 | |
| 6 | // CHECK: use -analyzer-disable-all-checks to disable all static analyzer checkers |
| 7 | int buggy() { |
| 8 | int x = 0; |
| 9 | return 5/x; // no warning |
| 10 | } |