You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
436 B
24 lines
436 B
// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store=region -verify %s
|
|
|
|
bool PR14634(int x) {
|
|
double y = (double)x;
|
|
return !y;
|
|
}
|
|
|
|
bool PR14634_implicit(int x) {
|
|
double y = (double)x;
|
|
return y;
|
|
}
|
|
|
|
void intAsBoolAsSwitchCondition(int c) {
|
|
switch ((bool)c) { // expected-warning {{switch condition has boolean value}}
|
|
case 0:
|
|
break;
|
|
}
|
|
|
|
switch ((int)(bool)c) { // no-warning
|
|
case 0:
|
|
break;
|
|
}
|
|
}
|