commit | c2d3d3112e981b142ffdb742622b52bc165a3df9 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Aug 27 22:42:52 2006 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Aug 27 22:42:52 2006 +0000 |
tree | 01726132d406eb377d56c0590770db01784bef36 | |
parent | c7cff24f40b22bf010d33a92c08c707a419a6b98 [diff] [blame] |
eliminate RegisterOpt. It does the same thing as RegisterPass. llvm-svn: 29925
diff --git a/llvm/lib/Analysis/ValueNumbering.cpp b/llvm/lib/Analysis/ValueNumbering.cpp index c534bba..fb3bed0 100644 --- a/llvm/lib/Analysis/ValueNumbering.cpp +++ b/llvm/lib/Analysis/ValueNumbering.cpp
@@ -60,7 +60,7 @@ }; // Register this pass... - RegisterOpt<BasicVN> + RegisterPass<BasicVN> X("basicvn", "Basic Value Numbering (default GVN impl)"); // Declare that we implement the ValueNumbering interface