diff options
| author | Ted Kremenek <kremenek@apple.com> | 2010-02-04 00:47:48 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2010-02-04 00:47:48 +0000 |
| commit | 1e3b95580c3e2327377a0ea846bc63fc9b845a69 (patch) | |
| tree | ac98ca97ce44628334b9fde68b3cbda0c350a29b /clang/lib/Checker/CMakeLists.txt | |
| parent | b8355e3b9f4419f7cd0c85bcddc58feb4b26d07a (diff) | |
| download | bcm5719-llvm-1e3b95580c3e2327377a0ea846bc63fc9b845a69.tar.gz bcm5719-llvm-1e3b95580c3e2327377a0ea846bc63fc9b845a69.zip | |
static analyzer: handle casts of a function to a function pointer with
a different return type. While we don't emit any errors (yet), at
least we avoid cases where we might crash because of an assertion
failure later on (when the return type differs from what is expected).
llvm-svn: 95268
Diffstat (limited to 'clang/lib/Checker/CMakeLists.txt')
| -rw-r--r-- | clang/lib/Checker/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Checker/CMakeLists.txt b/clang/lib/Checker/CMakeLists.txt index 033ad338143..130378a2477 100644 --- a/clang/lib/Checker/CMakeLists.txt +++ b/clang/lib/Checker/CMakeLists.txt @@ -1,6 +1,7 @@ set(LLVM_NO_RTTI 1) add_clang_library(clangChecker + AdjustedReturnValueChecker.cpp ArrayBoundChecker.cpp AttrNonNullChecker.cpp BasicConstraintManager.cpp @@ -26,8 +27,8 @@ add_clang_library(clangChecker DivZeroChecker.cpp Environment.cpp ExplodedGraph.cpp - FlatStore.cpp FixedAddressChecker.cpp + FlatStore.cpp GRBlockCounter.cpp GRCoreEngine.cpp GRExprEngine.cpp |

