http://llvm.org/bugs/show_bug.cgi?id=5425
Ted Kremenek <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID | Summary|Sema should not depend on |split libAnalysis into |libclangAnalysis |libAnalysis and libChecker --- Comment #3 from Ted Kremenek <[email protected]> 2009-11-09 13:51:18 --- Daniel and I discussed this offline. The issue is that libAnalysis contains both code for "basic analysis" (that can be used for compiler warnings) and the static analyzer. Ideally those two pieces should be separate since we don't want compiler-only Clang executables to have to link in the static analyzer. Going forward, libAnalysis can have the "fundamental" analysis code (CFGs, etc.) and libChecker the path-sensitive engine and the static analysis checks. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
