aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Analysis/div-zero.cpp
blob: d1261dc57335ed5784d625032538973c10a2fa53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -analyze -analyzer-checker=core.DivideZero -verify %s

int fooPR10616 (int qX ) {
  int a, c, d;

  d = (qX-1);
  while ( d != 0 ) {
    d = c - (c/d) * d;
  }

  return (a % (qX-1)); // expected-warning {{Division by zero}}

}