From de03bc07ef7034936971dcc0117e4a9a9436fcee Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sun, 24 Apr 2005 17:36:05 +0000 Subject: extract has been renamed to llvm-extract to avoid conflicting with another tool git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21498 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-extract/llvm-extract.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/llvm-extract/llvm-extract.cpp') diff --git a/tools/llvm-extract/llvm-extract.cpp b/tools/llvm-extract/llvm-extract.cpp index 78d0426be1..e1088d2b2d 100644 --- a/tools/llvm-extract/llvm-extract.cpp +++ b/tools/llvm-extract/llvm-extract.cpp @@ -1,4 +1,4 @@ -//===- extract.cpp - LLVM function extraction utility ---------------------===// +//===- llvm-extract.cpp - LLVM function extraction utility ----------------===// // // The LLVM Compiler Infrastructure // @@ -69,9 +69,9 @@ int main(int argc, char **argv) { Passes.add(new TargetData("extract", M.get())); // Use correct TargetData // Either isolate the function or delete it from the Module Passes.add(createFunctionExtractionPass(F, DeleteFn)); - Passes.add(createGlobalDCEPass()); // Delete unreachable globals - Passes.add(createFunctionResolvingPass()); // Delete prototypes - Passes.add(createDeadTypeEliminationPass()); // Remove dead types... + Passes.add(createGlobalDCEPass()); // Delete unreachable globals + Passes.add(createFunctionResolvingPass()); // Delete prototypes + Passes.add(createDeadTypeEliminationPass()); // Remove dead types... std::ostream *Out = 0; -- cgit v1.2.3