aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-15 22:53:20 +0000
committerChris Lattner <sabre@nondot.org>2004-08-15 22:53:20 +0000
commit26516544a1ef44ffba99d2892b100dd80f627b87 (patch)
tree403f989bdd9c6907086ac15ff04626095d49d836
parent5943c5078cfbc6564fc4c9418bcf5ab49c9ce7e8 (diff)
downloadllvm-26516544a1ef44ffba99d2892b100dd80f627b87.zip
llvm-26516544a1ef44ffba99d2892b100dd80f627b87.tar.gz
llvm-26516544a1ef44ffba99d2892b100dd80f627b87.tar.bz2
Documentation like this doesn't belong here, and now we have the commandguide
llvm-svn: 15785
-rw-r--r--llvm/tools/extract/README.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/tools/extract/README.txt b/llvm/tools/extract/README.txt
deleted file mode 100644
index 81811a3..0000000
--- a/llvm/tools/extract/README.txt
+++ /dev/null
@@ -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.
-