[llvm] r324704 - [bugpoint] Delete a dead cl::opt (-child-output)

Vedant Kumar via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 8 21:09:49 PST 2018


Author: vedantk
Date: Thu Feb  8 21:09:49 2018
New Revision: 324704

URL: http://llvm.org/viewvc/llvm-project?rev=324704&view=rev
Log:
[bugpoint] Delete a dead cl::opt (-child-output)

This option isn't used anywhere, as far as I can tell.

Modified:
    llvm/trunk/tools/bugpoint/OptimizerDriver.cpp

Modified: llvm/trunk/tools/bugpoint/OptimizerDriver.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/OptimizerDriver.cpp?rev=324704&r1=324703&r2=324704&view=diff
==============================================================================
--- llvm/trunk/tools/bugpoint/OptimizerDriver.cpp (original)
+++ llvm/trunk/tools/bugpoint/OptimizerDriver.cpp Thu Feb  8 21:09:49 2018
@@ -43,9 +43,6 @@ static cl::opt<bool> PreserveBitcodeUseL
     cl::desc("Preserve use-list order when writing LLVM bitcode."),
     cl::init(true), cl::Hidden);
 
-// ChildOutput - This option captures the name of the child output file that
-// is set up by the parent bugpoint process
-static cl::opt<std::string> ChildOutput("child-output", cl::ReallyHidden);
 static cl::opt<std::string>
     OptCmd("opt-command", cl::init(""),
            cl::desc("Path to opt. (default: search path "




More information about the llvm-commits mailing list