[llvm-commits] CVS: llvm/tools/analyze/AnalysisWrappers.cpp GraphPrinters.cpp Makefile PrintSCC.cpp analyze.cpp
LLVM
llvm at cs.uiuc.edu
Thu Aug 17 23:35:15 PDT 2006
Changes in directory llvm/tools/analyze:
AnalysisWrappers.cpp (r1.18) removed
GraphPrinters.cpp (r1.11) removed
Makefile (r1.34) removed
PrintSCC.cpp (r1.14) removed
analyze.cpp (r1.68) removed
---
Log message:
For PR872: http://llvm.org/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.
---
Diffs of the changes: (+0 -0)
0 files changed
More information about the llvm-commits
mailing list