llvm-6502/test
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
..
Analysis For PR872: 2006-08-18 06:34:30 +00:00
Archive
Assembler
BugPoint
Bytecode
C++Frontend
CFrontend converge on the right number of %'s :) 2006-08-04 18:09:27 +00:00
CodeGen Temporarily xfail this test, evan will look at it in a week or so. 2006-08-18 00:18:38 +00:00
Debugger
ExecutionEngine
Feature
lib
Linker
Other
Scripts
TableGen
Transforms For PR872: 2006-08-18 06:34:30 +00:00
Verifier
.cvsignore
Failure.sh
Makefile If dejagnu is not found, tell the user instead of bombing out with an 2006-08-01 00:07:58 +00:00
Makefile.tests
TestRunner.sh