mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
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:
parent
d9d8c07eea
commit
ac20beb546
@ -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
|
@ -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
|
@ -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
|
@ -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
|
Loading…
x
Reference in New Issue
Block a user