aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/StackSlots.h
blob: 77d439878bc0de57f09c2be0b59aed2e4f431a67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//===-- 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 Pass;
class TargetMachine;
Pass *createStackSlotsPass(const TargetMachine &TM);

#endif