aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/StackSlots.h
diff options
context:
space:
mode:
authorAnand Shukla <ashukla@cs.uiuc.edu>2002-09-21 04:58:26 +0000
committerAnand Shukla <ashukla@cs.uiuc.edu>2002-09-21 04:58:26 +0000
commit33db9bae15637ed1396f4e44dee69cccbbd6c6d1 (patch)
treebd10c4ff7f2616f0e75183739441b5e4c6502686 /include/llvm/CodeGen/StackSlots.h
parentd1cf1b458a952e9d8a28ea50bef165eee093b569 (diff)
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
Diffstat (limited to 'include/llvm/CodeGen/StackSlots.h')
-rw-r--r--include/llvm/CodeGen/StackSlots.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/StackSlots.h b/include/llvm/CodeGen/StackSlots.h
new file mode 100644
index 0000000000..a8b69bb32a
--- /dev/null
+++ b/include/llvm/CodeGen/StackSlots.h
@@ -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