Displaying 2 results from an estimated 2 matches for "pr872".
Did you mean:
pr82
2006 Aug 18
2
[LLVMdev] 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 -domse...
2006 Aug 20
0
[LLVMdev] Removal of analyze tool
...but harmless.
Please see http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=885 for details.
Reid.
On Fri, 2006-08-18 at 09:53 -0700, Reid Spencer wrote:
> 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...