diff options
Diffstat (limited to 'tools/opt/opt.cpp')
-rw-r--r-- | tools/opt/opt.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 228e545e5e..ce2db65dd0 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -30,6 +30,9 @@ #include "Support/Signals.h" #include <fstream> #include <memory> +#include <iostream> + +using std::cerr; // FIXME: This should be parameterizable eventually for different target // types... @@ -100,7 +103,6 @@ struct { { trace , createTraceValuesPassForBasicBlocks }, { tracem , createTraceValuesPassForFunction }, { paths , createProfilePathsPass }, - { print , createPrintFunctionPass }, { printm , createPrintModulePass }, { verify , createVerifierPass }, |