Initial version: it adds 2 empty slots at the top of stack

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3872 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Anand Shukla
2002-09-21 04:58:26 +00:00
parent d1cf1b458a
commit 33db9bae15
2 changed files with 57 additions and 0 deletions
+16
View File
@@ -0,0 +1,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