mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-25 00:33:15 +00:00
17 lines
436 B
C
17 lines
436 B
C
|
//===-- llvm/CodeGen/StackSots.h -------------------------------*- C++ -*--===//
|
||
|
//
|
||
|
// External interface to stack-slots pass that enters 2 empty slots
|
||
|
// at the top of each function stack
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef LLVM_CODEGEN_STACKSLOTS_H
|
||
|
#define LLVM_CODEGEN_STACKSLOTS_H
|
||
|
|
||
|
class TargetMachine;
|
||
|
class Pass;
|
||
|
|
||
|
Pass *createStackSlotsPass(TargetMachine &Target);
|
||
|
|
||
|
#endif
|