diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-23 01:11:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-23 01:11:51 +0000 |
commit | 37ae4056bb2cbebd27fa2c227d733ccf80a60c32 (patch) | |
tree | 99c642d62b6ff5c8d047f3c3d3190200c5711b7a /include/llvm/CodeGen/StackSlots.h | |
parent | 8cdc6b726a79f4406f9bb067942b582052c07018 (diff) |
Minor cleanups
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4267 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/StackSlots.h')
-rw-r--r-- | include/llvm/CodeGen/StackSlots.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/StackSlots.h b/include/llvm/CodeGen/StackSlots.h index a8b69bb32a..77d439878b 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 |