LiveRange.h is now in lib/CodeGen/RegAlloc
[oota-llvm.git] / include / llvm / CodeGen / StackSlots.h
1 //===-- llvm/CodeGen/StackSots.h -------------------------------*- C++ -*--===//
2 //
3 // External interface to stack-slots pass that enters 2 empty slots at the top
4 // of each function stack
5 //
6 //===----------------------------------------------------------------------===//
7
8 #ifndef LLVM_CODEGEN_STACKSLOTS_H
9 #define LLVM_CODEGEN_STACKSLOTS_H
10
11 class Pass;
12 class TargetMachine;
13 Pass *createStackSlotsPass(const TargetMachine &TM);
14
15 #endif