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
This commit is contained in:
Chris Lattner 2002-07-24 17:10:24 +00:00
parent d9d8c07eea
commit ac20beb546
4 changed files with 0 additions and 59 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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