diff --git a/include/llvm/CodeGen/StackSlots.h b/include/llvm/CodeGen/StackSlots.h index a8b69bb32ac..77d439878bc 100644 --- a/include/llvm/CodeGen/StackSlots.h +++ b/include/llvm/CodeGen/StackSlots.h @@ -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