Mikhail R. Gadelha | 8cd2ee1 | 2018-06-04 14:40:44 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,debug.ExprInspection -DNO_CROSSCHECK -verify %s |
| 2 | // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,debug.ExprInspection -analyzer-config crosscheck-with-z3=true -verify %s |
| 3 | // REQUIRES: z3 |
| 4 | |
| 5 | int foo(int x) |
| 6 | { |
| 7 | int *z = 0; |
| 8 | if ((x & 1) && ((x & 1) ^ 1)) |
| 9 | #ifdef NO_CROSSCHECK |
| 10 | return *z; // expected-warning {{Dereference of null pointer (loaded from variable 'z')}} |
| 11 | #else |
| 12 | return *z; // no-warning |
| 13 | #endif |
| 14 | return 0; |
| 15 | } |
| 16 | |
| 17 | void g(int d); |
| 18 | |
| 19 | void f(int *a, int *b) { |
| 20 | int c = 5; |
| 21 | if ((a - b) == 0) |
| 22 | c = 0; |
| 23 | if (a != b) |
Mikhail R. Gadelha | 8cd2ee1 | 2018-06-04 14:40:44 +0000 | [diff] [blame] | 24 | g(3 / c); // no-warning |
Mikhail R. Gadelha | 8cd2ee1 | 2018-06-04 14:40:44 +0000 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | _Bool nondet_bool(); |
| 28 | |
| 29 | void h(int d) { |
| 30 | int x, y, k, z = 1; |
Mikhail R. Gadelha | 8cd2ee1 | 2018-06-04 14:40:44 +0000 | [diff] [blame] | 31 | while (z < k) { // expected-warning {{The right operand of '<' is a garbage value}} |
Mikhail R. Gadelha | 8cd2ee1 | 2018-06-04 14:40:44 +0000 | [diff] [blame] | 32 | z = 2 * z; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | void i() { |
| 37 | _Bool c = nondet_bool(); |
| 38 | if (c) { |
| 39 | h(1); |
| 40 | } else { |
| 41 | h(2); |
| 42 | } |
| 43 | } |