summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/IPO
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-23 19:51:10 +0000
committerChris Lattner <sabre@nondot.org>2002-07-23 19:51:10 +0000
commit3c19b9238918ae7ca2c9c7133addb639c37105d5 (patch)
tree8fc9af481bf64a93fc699f7fe18b4accf22d2f67 /include/llvm/Transforms/IPO
parent03917ccb0c2975642b3d3eb8c07cc0ba551bad4b (diff)
downloadllvm-3c19b9238918ae7ca2c9c7133addb639c37105d5.tar.gz
llvm-3c19b9238918ae7ca2c9c7133addb639c37105d5.tar.bz2
llvm-3c19b9238918ae7ca2c9c7133addb639c37105d5.tar.xz
Incorporate into IPO.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3030 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/IPO')
-rw-r--r--include/llvm/Transforms/IPO/ConstantMerge.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/llvm/Transforms/IPO/ConstantMerge.h b/include/llvm/Transforms/IPO/ConstantMerge.h
deleted file mode 100644
index 1415339f61..0000000000
--- a/include/llvm/Transforms/IPO/ConstantMerge.h
+++ /dev/null
@@ -1,19 +0,0 @@
-//===- llvm/Transforms/ConstantMerge.h - Merge duplicate consts --*- C++ -*--=//
-//
-// This file defines the interface to a pass that merges duplicate global
-// constants together into a single constant that is shared. This is useful
-// because some passes (ie TraceValues) insert a lot of string constants into
-// the program, regardless of whether or not they duplicate an existing string.
-//
-// Algorithm: ConstantMerge is designed to build up a map of available constants
-// and elminate duplicates when it is initialized.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_TRANSFORMS_CONSTANTMERGE_H
-#define LLVM_TRANSFORMS_CONSTANTMERGE_H
-
-class Pass;
-Pass *createConstantMergePass();
-
-#endif