Skip to content
  • Jordan Rose's avatar
    [analyzer] Add a test that we are, in fact, doing a DFS on the ExplodedGraph. · 42ee04d0
    Jordan Rose authored
    Previously:
    ...the comment said DFS...
    ...the WorkList being instantiated said BFS...
    ...and the implementation was actually DFS...
    ...due to an unintentional change in 2010...
    ...and everything kept working anyway.
    
    This fixes our std::deque implementation of BFS, but switches back to a
    SmallVector-based implementation of DFS.
    
    We should probably still investigate the ramifications of DFS vs. BFS,
    especially for large functions (and especially when we hit our block path
    limit), since this might completely change our memory use. It can also mask
    some bugs and reveal others depending on when we halt analysis. But at least
    we will not have this kind of little mistake creep in again.
    
    llvm-svn: 159397
    42ee04d0
Loading