blob: a8b69bb32ac5f2073b4c6eef41bfc94065a6acf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===-- 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
|