mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
16 lines
476 B
C
16 lines
476 B
C
|
//===-- 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
|