mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 03:56:06 +00:00
13 lines
244 B
C++
13 lines
244 B
C++
![]() |
// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store=region -verify %s
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
bool PR14634(int x) {
|
||
|
double y = (double)x;
|
||
|
return !y;
|
||
|
}
|
||
|
|
||
|
bool PR14634_implicit(int x) {
|
||
|
double y = (double)x;
|
||
|
return y;
|
||
|
}
|