diff options
author | Daniel Dunbar <daniel@zuster.org> | 2014-09-14 16:29:45 -0700 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2014-09-14 16:29:45 -0700 |
commit | bc433a764ed24848f3c6dae9b90d23695b4b0cec (patch) | |
tree | c57e3ed5838c6e8e6e12db64dfc1e94cedd2bf2c /lib/Module | |
parent | 136a3dd6f2ac2acfbbf19e405eae0c4dd68bda15 (diff) | |
download | klee-bc433a764ed24848f3c6dae9b90d23695b4b0cec.tar.gz |
[LLVM3.5] Drop use of PassNameParser, which we don't even use anymore.
Diffstat (limited to 'lib/Module')
-rw-r--r-- | lib/Module/Optimize.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Module/Optimize.cpp b/lib/Module/Optimize.cpp index f3d58000..2aeb9f83 100644 --- a/lib/Module/Optimize.cpp +++ b/lib/Module/Optimize.cpp @@ -43,16 +43,9 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/Transforms/IPO.h" #include "llvm/Transforms/Scalar.h" -#include "llvm/Support/PassNameParser.h" #include "llvm/Support/PluginLoader.h" using namespace llvm; -#if 0 -// Pass Name Options as generated by the PassNameParser -static cl::list<const PassInfo*, bool, PassNameParser> - OptimizationList(cl::desc("Optimizations available:")); -#endif - // Don't verify at the end static cl::opt<bool> DontVerify("disable-verify", cl::ReallyHidden); |