summaryrefslogtreecommitdiffstats
path: root/test/Analysis/test-include.c
blob: 20aa2447850b9b42acb5db0ad21ebf506804ae7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clang_analyze_cc1 -analyzer-checker=core -verify %s

#include "test-include.h"
#define DIVYX(X,Y) Y/X

void test_01(int *data) {
  data = 0;
  *data = 1; // expected-warning{{Dereference of null pointer}}
}

int test_02() {
  int res = DIVXY(1,0); // expected-warning{{Division by zero}}
                        // expected-warning@-1{{division by zero is undefined}}
  return res;
}

int test_03() {
  int res = DIVYX(0,1); // expected-warning{{Division by zero}}
                        // expected-warning@-1{{division by zero is undefined}}
  return res;
}