1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00
llvm-mirror/include/llvm/CodeGen/StackSlots.h
Chris Lattner e68a9a15dd Minor cleanups
llvm-svn: 4267
2002-10-23 01:11:51 +00:00

16 lines
437 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 Pass;
class TargetMachine;
Pass *createStackSlotsPass(const TargetMachine &TM);
#endif