Documentation like this doesn't belong here, and now we have the commandguide

llvm-svn: 15785
This commit is contained in:
Chris Lattner 2004-08-15 22:53:20 +00:00
parent 5943c5078c
commit 26516544a1
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
I checked in a new tool, primarily useful for debugging. Given a module
and a function name, it extracts just the specified function from the
module, with a minimum of related cruft (global variables, function
prototypes, etc).
This is useful because often something will die (for example SCCP
miscompiles one function of a large benchmark), and so you want to just
cut the testcase down to the one function that is being a problem. In
this case, 'extract' eliminates all of the extraneous global variables,
type information, and functions that aren't necessary, giving you
something simpler.
This is just an FYI, because I've found it useful and thought you guys
might as well.