diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-09-20 21:35:51 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-09-20 21:35:51 +0000 |
commit | 076468c0d029c237a36972b8877908b549dae416 (patch) | |
tree | a3d41b2e0ac2e83ee1d46c80489a8027b0395559 /llvm/lib/Target/ARM/Thumb1FrameLowering.h | |
parent | 562630a1feb92e3f6854056364b18e29eefa0ecd (diff) | |
download | bcm5719-llvm-076468c0d029c237a36972b8877908b549dae416.tar.gz bcm5719-llvm-076468c0d029c237a36972b8877908b549dae416.zip |
[ARM] Fix some Clang-tidy modernize-use-using and Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 313823
Diffstat (limited to 'llvm/lib/Target/ARM/Thumb1FrameLowering.h')
-rw-r--r-- | llvm/lib/Target/ARM/Thumb1FrameLowering.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/llvm/lib/Target/ARM/Thumb1FrameLowering.h b/llvm/lib/Target/ARM/Thumb1FrameLowering.h index e456e24ae73..a4d6451ccf1 100644 --- a/llvm/lib/Target/ARM/Thumb1FrameLowering.h +++ b/llvm/lib/Target/ARM/Thumb1FrameLowering.h @@ -1,4 +1,4 @@ -//===-- Thumb1FrameLowering.h - Thumb1-specific frame info stuff --*- C++ -*-=// +//===- Thumb1FrameLowering.h - Thumb1-specific frame info stuff ---*- C++ -*-=// // // The LLVM Compiler Infrastructure // @@ -6,21 +6,17 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// -// -// -//===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_ARM_THUMB1FRAMELOWERING_H #define LLVM_LIB_TARGET_ARM_THUMB1FRAMELOWERING_H #include "ARMFrameLowering.h" -#include "Thumb1InstrInfo.h" -#include "ThumbRegisterInfo.h" -#include "llvm/Target/TargetFrameLowering.h" namespace llvm { +class ARMSubtarget; +class MachineFunction; + class Thumb1FrameLowering : public ARMFrameLowering { public: explicit Thumb1FrameLowering(const ARMSubtarget &sti); @@ -88,6 +84,6 @@ private: bool emitPopSpecialFixUp(MachineBasicBlock &MBB, bool DoIt) const; }; -} // End llvm namespace +} // end namespace llvm -#endif +#endif // LLVM_LIB_TARGET_ARM_THUMB1FRAMELOWERING_H |