Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d9acbf commit 30b9d13Copy full SHA for 30b9d13
1 file changed
cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c
@@ -643,11 +643,11 @@ void two_bounds_from_one_test(short ss, unsigned short us) {
643
void guard_bound_out_of_range(void) {
644
int i = 0;
645
if (i < 0) {
646
- out(i); // 0 .. 0 [BUG: is -max .. +max]
+ out(i); // unreachable [BUG: is -max .. +max]
647
}
648
649
unsigned int u = 0;
650
if (u < 0) {
651
- out(u); // 0 .. 0 [BUG: is 0 .. +max]
+ out(u); // unreachable [BUG: is 0 .. +max]
652
653
0 commit comments