diff options
author | Chris Lattner <sabre@nondot.org> | 2002-06-24 16:49:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-06-24 16:49:55 +0000 |
commit | 0df3511df9464bb1331f06c6621351acc870f9ff (patch) | |
tree | c5595606be54f9fa15ff51d1d620b6b798a0e8ed | |
parent | 5d5824b77a0d0784379659ceb19c57473b04b9a1 (diff) | |
download | bcm5719-llvm-0df3511df9464bb1331f06c6621351acc870f9ff.tar.gz bcm5719-llvm-0df3511df9464bb1331f06c6621351acc870f9ff.zip |
Checkin descriptive note
llvm-svn: 2765
-rw-r--r-- | llvm/tools/extract/README.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/tools/extract/README.txt b/llvm/tools/extract/README.txt new file mode 100644 index 00000000000..6f0cda94cfb --- /dev/null +++ b/llvm/tools/extract/README.txt @@ -0,0 +1,15 @@ +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 neccesary, giving you +something simpler. + +This is just an FYI, because I've found it useful and thought you guys +might as well. + |