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 Added the ability to xfail based on llvmgcc version 2006-04-12 21:57:40 +00:00
Assembler New testcase, check that the bc file correctly encodes varargs nonccc calls. 2006-05-26 18:41:26 +00:00
BugPoint Only look at .ll files in this directory 2006-04-13 17:32:53 +00:00
Bytecode Added the ability to xfail based on llvmgcc version 2006-04-12 21:57:40 +00:00
C++Frontend Another case where a dead cast was causing the test to spuriously 2006-04-13 17:28:28 +00:00
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 Added the ability to xfail based on llvmgcc version 2006-04-12 21:57:40 +00:00
ExecutionEngine Don't test an example 2006-07-26 20:33:20 +00:00
Feature Fix a problem where dejagnu won't accept the value of global tcl variable 2006-05-28 07:22:42 +00:00
lib No, libLLVMbzip2 does not have a .a suffix. 2006-06-01 07:23:32 +00:00
Linker New testcase, the linker is not merging alignments right. 2006-06-16 01:20:58 +00:00
Other Added the ability to xfail based on llvmgcc version 2006-04-12 21:57:40 +00:00
Scripts
TableGen Added the ability to xfail based on llvmgcc version 2006-04-12 21:57:40 +00:00
Transforms For PR872: 2006-08-18 06:34:30 +00:00
Verifier Testcase for PR826 2006-07-11 20:29:21 +00:00
.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 Just a minor tweak so you can run things like: 2006-06-17 08:06:33 +00:00