2002-09-21 04:58:26 +00:00
|
|
|
//===-- llvm/CodeGen/StackSots.h -------------------------------*- C++ -*--===//
|
|
|
|
//
|
2002-10-23 01:11:51 +00:00
|
|
|
// External interface to stack-slots pass that enters 2 empty slots at the top
|
|
|
|
// of each function stack
|
2002-09-21 04:58:26 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_STACKSLOTS_H
|
|
|
|
#define LLVM_CODEGEN_STACKSLOTS_H
|
|
|
|
|
|
|
|
class Pass;
|
2002-10-23 01:11:51 +00:00
|
|
|
class TargetMachine;
|
|
|
|
Pass *createStackSlotsPass(const TargetMachine &TM);
|
2002-09-21 04:58:26 +00:00
|
|
|
|
|
|
|
#endif
|