Removal of analyze tool

All,

As of last night's commits, the analyze tool's functionality has been
moved to the opt tool. This was requested in PR872. The change reduces
LLVM's Debug footprint by 36MB without any loss of functionality. To
obtain analyze's old functionality, pass the -analyze switch to the opt
tool.

If you previously did this:
   analyze $FNAME -domset -disable-verify
you would now do this:
   opt -analyze $FNAME -domset -disable-verify

Pretty simple.

Reid.

Caveat Emptor.

The new version of opt will generate some warnings about duplicate
command line option registration. These are annoying but harmless.
Please see http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=885 for details.

Reid.

The new version of opt will generate some warnings about duplicate
command line option registration. These are annoying but harmless.
Please see http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=885 for details.

Fixed.

-chris

All,

As of last night's commits, the analyze tool's functionality has been
moved to the opt tool. This was requested in PR872. The change reduces
LLVM's Debug footprint by 36MB without any loss of functionality. To
obtain analyze's old functionality, pass the -analyze switch to the opt
tool.

If you previously did this:
   analyze $FNAME -domset -disable-verify
you would now do this:
   opt -analyze $FNAME -domset -disable-verify

Pretty simple.

Reid.

_______________________________________________
LLVM Developers mailing list
LLVMdev@cs.uiuc.edu http://llvm.cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev

_______________________________________________
LLVM Developers mailing list
LLVMdev@cs.uiuc.edu http://llvm.cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev

-Chris