summaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms/IPO/ConstantMerge.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Transforms/IPO/ConstantMerge.h')
-rw-r--r--include/llvm/Transforms/IPO/ConstantMerge.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/Transforms/IPO/ConstantMerge.h b/include/llvm/Transforms/IPO/ConstantMerge.h
index b25fb66..1415339 100644
--- a/include/llvm/Transforms/IPO/ConstantMerge.h
+++ b/include/llvm/Transforms/IPO/ConstantMerge.h
@@ -8,10 +8,6 @@
// Algorithm: ConstantMerge is designed to build up a map of available constants
// and elminate duplicates when it is initialized.
//
-// The DynamicConstantMerge method is a superset of the ConstantMerge algorithm
-// that checks for each method to see if constants have been added to the
-// constant pool since it was last run... if so, it processes them.
-//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_CONSTANTMERGE_H
@@ -19,6 +15,5 @@
class Pass;
Pass *createConstantMergePass();
-Pass *createDynamicConstantMergePass();
#endif