summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/ExplodedGraph.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use back() instead of end()-1Argyrios Kyrtzidis2008-04-221-2/+2
| | | | llvm-svn: 50098
* Fix improper dereference of end() iterator. Patch by Argiris Kirtzidis!Ted Kremenek2008-04-201-2/+5
| | | | llvm-svn: 50012
* In ExplodedGraphImpl::Trim, prioritize for paths that don't span loops by usingTed Kremenek2008-04-161-5/+34
| | | | | | | | | two worklists: for nodes whose locations are block edges with loop terminators and another for nodes with all other locations. We only dequeue from the loop worklist when the other is empty. Exploration of the graph is still in reverse-BFS. llvm-svn: 49791
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-151-0/+227
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
OpenPOWER on IntegriCloud