diff options
Diffstat (limited to 'lib/Transforms/IPO/ConstantMerge.cpp')
-rw-r--r-- | lib/Transforms/IPO/ConstantMerge.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/IPO/ConstantMerge.cpp b/lib/Transforms/IPO/ConstantMerge.cpp index ff2442d2b6..acb3b6b937 100644 --- a/lib/Transforms/IPO/ConstantMerge.cpp +++ b/lib/Transforms/IPO/ConstantMerge.cpp @@ -65,16 +65,16 @@ bool ConstantMerge::mergeDuplicateConstants(Module *M) { } -// doPassInitialization - For this pass, process all of the globals in the +// doInitialization - For this pass, process all of the globals in the // module, eliminating duplicate constants. // -bool ConstantMerge::doPassInitialization(Module *M) { +bool ConstantMerge::doInitialization(Module *M) { return ::mergeDuplicateConstants(M, LastConstantSeen, Constants); } // doPerMethodWork - Check to see if any globals have been added to the // global list for the module. If so, eliminate them. // -bool DynamicConstantMerge::doPerMethodWork(Method *M) { +bool DynamicConstantMerge::runOnMethod(Method *M) { return ::mergeDuplicateConstants(M->getParent(), LastConstantSeen, Constants); } |