llvm-6502/test/Analysis
Reid Spencer fd90dd5d55 For PR872:
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.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29762 91177308-0d34-0410-b5e6-96231b3b80d8
2006-08-18 06:34:30 +00:00
..
Andersens Added the ability to xfail based on llvmgcc version 2006-04-12 21:57:40 +00:00
BasicAA Added the ability to xfail based on llvmgcc version 2006-04-12 21:57:40 +00:00
Dominators For PR872: 2006-08-18 06:34:30 +00:00
DSGraph For PR872: 2006-08-18 06:34:30 +00:00
GlobalsModRef Added the ability to xfail based on llvmgcc version 2006-04-12 21:57:40 +00:00
LoadVN Added the ability to xfail based on llvmgcc version 2006-04-12 21:57:40 +00:00
LoopInfo For PR872: 2006-08-18 06:34:30 +00:00
.cvsignore Tired of wading through cvs's list ? files that are generated when building 2006-03-23 23:41:57 +00:00