diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-24 17:10:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-24 17:10:24 +0000 |
commit | ac20beb546010cd7bf5cd99f6312cb48fc4607e6 (patch) | |
tree | ff72894255893acd5662bf7c7097476dd8013f7d | |
parent | d9d8c07eea31a589e526ff84ce8a89857b7caa3f (diff) |
Move contents of these files into IPO.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3041 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Transforms/IPO/GlobalDCE.h | 13 | ||||
-rw-r--r-- | include/llvm/Transforms/IPO/Internalize.h | 15 | ||||
-rw-r--r-- | include/llvm/Transforms/IPO/PoolAllocate.h | 15 | ||||
-rw-r--r-- | include/llvm/Transforms/IPO/SimpleStructMutation.h | 16 |
4 files changed, 0 insertions, 59 deletions
diff --git a/include/llvm/Transforms/IPO/GlobalDCE.h b/include/llvm/Transforms/IPO/GlobalDCE.h deleted file mode 100644 index 8956fc37e6..0000000000 --- a/include/llvm/Transforms/IPO/GlobalDCE.h +++ /dev/null @@ -1,13 +0,0 @@ -//===-- Transforms/IPO/GlobalDCE.h - DCE global values -----------*- C++ -*--=// -// -// This transform is designed to eliminate unreachable internal globals -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_TRANSFORM_IPO_GLOBALDCE_H -#define LLVM_TRANSFORM_IPO_GLOBALDCE_H - -class Pass; -Pass *createGlobalDCEPass(); - -#endif diff --git a/include/llvm/Transforms/IPO/Internalize.h b/include/llvm/Transforms/IPO/Internalize.h deleted file mode 100644 index e512dfc328..0000000000 --- a/include/llvm/Transforms/IPO/Internalize.h +++ /dev/null @@ -1,15 +0,0 @@ -//===-- Transforms/IPO/Internalize.h - Mark functions internal ---*- C++ -*--=// -// -// This pass loops over all of the functions in the input module, looking for a -// main function. If a main function is found, all other functions are marked -// as internal. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_TRANSFORM_IPO_INTERNALIZE_H -#define LLVM_TRANSFORM_IPO_INTERNALIZE_H - -class Pass; -Pass *createInternalizePass(); - -#endif diff --git a/include/llvm/Transforms/IPO/PoolAllocate.h b/include/llvm/Transforms/IPO/PoolAllocate.h deleted file mode 100644 index f503549fc8..0000000000 --- a/include/llvm/Transforms/IPO/PoolAllocate.h +++ /dev/null @@ -1,15 +0,0 @@ -//===-- Transforms/IPO/PoolAllocate.h - Pool Allocation Pass -----*- C++ -*--=// -// -// This transform changes programs so that disjoint data structures are -// allocated out of different pools of memory, increasing locality and shrinking -// pointer size. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_TRANSFORM_IPO_POOLALLOCATE_H -#define LLVM_TRANSFORM_IPO_POOLALLOCATE_H - -class Pass; -Pass *createPoolAllocatePass(); - -#endif diff --git a/include/llvm/Transforms/IPO/SimpleStructMutation.h b/include/llvm/Transforms/IPO/SimpleStructMutation.h deleted file mode 100644 index 518b6a6128..0000000000 --- a/include/llvm/Transforms/IPO/SimpleStructMutation.h +++ /dev/null @@ -1,16 +0,0 @@ -//===- llvm/Transforms/SimpleStructMutation.h - Permute Structs --*- C++ -*--=// -// -// This pass does is a wrapper that can do a few simple structure mutation -// transformations. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_TRANSFORMS_SIMPLESTRUCTMUTATION_H -#define LLVM_TRANSFORMS_SIMPLESTRUCTMUTATION_H - -class Pass; -class TargetData; -Pass *createSwapElementsPass(const TargetData &); -Pass *createSortElementsPass(const TargetData &); - -#endif |