aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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