diff options
author | Chris Lattner <sabre@nondot.org> | 2006-08-27 22:07:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-08-27 22:07:43 +0000 |
commit | d8c0bfb9a1b7f9cee3cc1b583ba6f610bf974673 (patch) | |
tree | 96ae7834f129dec370bb0c8d8b696bc3643988b3 | |
parent | 8e5e13b4fec6ec332265715611601075e216443e (diff) | |
download | bcm5719-llvm-d8c0bfb9a1b7f9cee3cc1b583ba6f610bf974673.tar.gz bcm5719-llvm-d8c0bfb9a1b7f9cee3cc1b583ba6f610bf974673.zip |
eliminate only use of FilteredPassNameParser
llvm-svn: 29916
-rw-r--r-- | llvm/tools/llvm-ld/Optimize.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/llvm-ld/Optimize.cpp b/llvm/tools/llvm-ld/Optimize.cpp index f53970371cd..29423a74ef7 100644 --- a/llvm/tools/llvm-ld/Optimize.cpp +++ b/llvm/tools/llvm-ld/Optimize.cpp @@ -27,8 +27,7 @@ using namespace llvm; // Pass Name Options as generated by the PassNameParser -static cl::list<const PassInfo*, bool, - FilteredPassNameParser<PassInfo::Optimization> > +static cl::list<const PassInfo*, bool, PassNameParser> OptimizationList(cl::desc("Optimizations available:")); // Optimization Enumeration |