commit | 7f8897f22e88271cfa114998a4d6088e7c8e8e11 | [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 | bf5610a6be6233216bdaa701a92527bc23b86cff | |
parent | 21a82e6fc718b4a2cc0281a4a43477ba940d3586 [diff] [blame] |
eliminate RegisterOpt. It does the same thing as RegisterPass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29925 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/ValueNumbering.cpp b/lib/Analysis/ValueNumbering.cpp index c534bba..fb3bed0 100644 --- a/lib/Analysis/ValueNumbering.cpp +++ b/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