| // RUN: %clang_analyze_cc1 -std=c++11 -analyzer-checker=debug.ExprInspection %s |
| void clang_analyzer_eval(bool); |
| return Foo::Zero == (Foo)x; // don't crash |
| void testCasting(int i) { |
| Foo f = static_cast<Foo>(i); |
| int j = static_cast<int>(f); |
| clang_analyzer_eval(f == Foo::Zero); // expected-warning{{TRUE}} |
| clang_analyzer_eval(j == 0); // expected-warning{{TRUE}} |
| clang_analyzer_eval(f == Foo::Zero); // expected-warning{{FALSE}} |
| clang_analyzer_eval(j == 0); // expected-warning{{FALSE}} |
| enum class EnumBool : bool { |
| bool testNoCrashOnSwitchEnumBool(EnumBool E) { |
| bool testNoCrashOnSwitchEnumBoolConstant() { |
| EnumBool E = EnumBool::F; |
| typedef __INTPTR_TYPE__ intptr_t; |
| bool testNoCrashOnSwitchEnumBoolConstantCastedFromNullptr() { |
| EnumBool E = static_cast<EnumBool>((intptr_t)nullptr); |
| bool testNoCrashOnSwitchEnumBoolConstantCastedFromPtr() { |
| intptr_t P = (intptr_t)&X; |
| EnumBool E = static_cast<EnumBool>(P); |