Minor cleanups
authorChris Lattner <sabre@nondot.org>
Wed, 23 Oct 2002 01:11:51 +0000 (01:11 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 23 Oct 2002 01:11:51 +0000 (01:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4267 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/StackSlots.h

index a8b69bb32ac5f2073b4c6eef41bfc94065a6acf0..77d439878bc0de57f09c2be0b59aed2e4f431a67 100644 (file)
@@ -1,16 +1,15 @@
 //===-- llvm/CodeGen/StackSots.h -------------------------------*- C++ -*--===//
 //
-// External interface to stack-slots pass that enters 2 empty slots
-// at the top of each function stack
+// 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);
+class TargetMachine;
+Pass *createStackSlotsPass(const TargetMachine &TM);
 
 #endif