Skip to content
  1. Mar 30, 2008
  2. Mar 25, 2008
  3. Mar 23, 2008
  4. Mar 03, 2008
  5. Mar 01, 2008
  6. Feb 29, 2008
  7. Dec 29, 2007
  8. Dec 09, 2007
  9. Aug 13, 2007
  10. Feb 09, 2007
  11. Jan 08, 2007
  12. Dec 02, 2006
  13. Sep 08, 2006
  14. Sep 07, 2006
  15. Aug 23, 2006
  16. 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
  17. Jul 26, 2006
  18. May 30, 2006
  19. May 17, 2006
  20. Apr 20, 2006
  21. Apr 24, 2005
  22. Jan 16, 2005
  23. Dec 31, 2004
  24. Dec 17, 2004
  25. Dec 14, 2004
    • Reid Spencer's avatar
      For PR351: · b7c56070
      Reid Spencer authored
      llee was a nice hack, but it wasn't portable so its gone, with Misha's
      approval.  Operating systems have facilities available for making bytecode
      directly executable without this utility.
      
      llvm-svn: 18916
      b7c56070
  26. Nov 14, 2004
  27. Oct 28, 2004
Loading