[LLVMdev] Removal of analyze tool
Reid Spencer
rspencer at reidspencer.com
Fri Aug 18 09:53:15 PDT 2006
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.
More information about the llvm-dev
mailing list