mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 12:06:36 +00:00

Currently, we infer 0 if the divisible of the modulo op is 0: int a = x < 0; // a can be 0 int b = a % y; // b is either 1 % sym or 0 However, we don't when the op is / : int a = x < 0; // a can be 0 int b = a / y; // b is either 1 / sym or 0 / sym This commit fixes the discrepancy. Differential Revision: https://reviews.llvm.org/D99343
54 lines
1.4 KiB
C
54 lines
1.4 KiB
C
// RUN: %clang_analyze_cc1 -analyzer-checker=core \
|
|
// RUN: -analyzer-checker=debug.ExprInspection \
|
|
// RUN: -verify %s
|
|
|
|
void clang_analyzer_dump(int);
|
|
|
|
void test_0_multiplier1(int x, int y) {
|
|
int a = x < 0; // Eagerly bifurcate.
|
|
clang_analyzer_dump(a);
|
|
// expected-warning@-1{{0 S32b}}
|
|
// expected-warning@-2{{1 S32b}}
|
|
|
|
int b = a * y;
|
|
clang_analyzer_dump(b);
|
|
// expected-warning@-1{{0 S32b}}
|
|
// expected-warning-re@-2{{reg_${{[[:digit:]]+}}<int y>}}
|
|
}
|
|
|
|
void test_0_multiplier2(int x, int y) {
|
|
int a = x < 0; // Eagerly bifurcate.
|
|
clang_analyzer_dump(a);
|
|
// expected-warning@-1{{0 S32b}}
|
|
// expected-warning@-2{{1 S32b}}
|
|
|
|
int b = y * a;
|
|
clang_analyzer_dump(b);
|
|
// expected-warning@-1{{0 S32b}}
|
|
// expected-warning-re@-2{{reg_${{[[:digit:]]+}}<int y>}}
|
|
}
|
|
|
|
void test_0_modulo(int x, int y) {
|
|
int a = x < 0; // Eagerly bifurcate.
|
|
clang_analyzer_dump(a);
|
|
// expected-warning@-1{{0 S32b}}
|
|
// expected-warning@-2{{1 S32b}}
|
|
|
|
int b = a % y;
|
|
clang_analyzer_dump(b);
|
|
// expected-warning@-1{{0 S32b}}
|
|
// expected-warning-re@-2{{1 % (reg_${{[[:digit:]]+}}<int y>)}}
|
|
}
|
|
|
|
void test_0_divisible(int x, int y) {
|
|
int a = x < 0; // Eagerly bifurcate.
|
|
clang_analyzer_dump(a);
|
|
// expected-warning@-1{{0 S32b}}
|
|
// expected-warning@-2{{1 S32b}}
|
|
|
|
int b = a / y;
|
|
clang_analyzer_dump(b);
|
|
// expected-warning@-1{{0 S32b}}
|
|
// expected-warning-re@-2{{1 / (reg_${{[[:digit:]]+}}<int y>)}}
|
|
}
|