Skip to content
  1. Sep 07, 2006
  2. Sep 06, 2006
  3. Sep 05, 2006
  4. Sep 04, 2006
  5. Sep 03, 2006
  6. Sep 02, 2006
  7. Sep 01, 2006
  8. Aug 31, 2006
  9. Aug 30, 2006
  10. Aug 29, 2006
  11. Aug 28, 2006
  12. Aug 27, 2006
  13. Aug 26, 2006
  14. Aug 25, 2006
  15. Aug 24, 2006
  16. Aug 22, 2006
  17. Aug 21, 2006
  18. Aug 18, 2006
    • Reid Spencer's avatar
      For PR872: · 378f7d5d
      Reid Spencer authored
      Shrinkify LLVM's footprint by removing the analyze tool and moving its
      functionality into the opt tool. THis eliminates one of the largest tools
      from LLVM and doesn't make opt much bigger because it already included
      most of the analysis passes.  To get the old analyze functionality pass
      the -analyze option to opt. Note that the integeration here is dead
      simple. The "main" of analyze was just copied to opt and invoked if the
      -analyze option was given. There may be opportunities for further
      integration such as removing the distinction between transform passes
      and analysis passes.
      
      To use the analysis functionality, if you previously did this:
        analyze $FNAME -domset -disable-verify
      you would now do this:
        opt -analyze $FNAME -domset -disable-verify
      Pretty simple.
      
      llvm-svn: 29762
      378f7d5d
    • Chris Lattner's avatar
      Temporarily xfail this test, evan will look at it in a week or so. · ac2610a9
      Chris Lattner authored
      llvm-svn: 29760
      ac2610a9
  19. Aug 17, 2006
Loading