diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-01-31 00:56:17 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-01-31 00:56:17 +0000 |
commit | 342257ea9284da6fe20cdc5ccac3c1aa0e2b0243 (patch) | |
tree | f28c74683e0baaa0df0d50a4935e6528c83b9368 /llvm/lib/Target/ARM/ARMTargetObjectFile.h | |
parent | 6f5f001fdc20c0f35d277e1219845d04d978c4cd (diff) | |
download | bcm5719-llvm-342257ea9284da6fe20cdc5ccac3c1aa0e2b0243.tar.gz bcm5719-llvm-342257ea9284da6fe20cdc5ccac3c1aa0e2b0243.zip |
[ARM] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 293578
Diffstat (limited to 'llvm/lib/Target/ARM/ARMTargetObjectFile.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMTargetObjectFile.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetObjectFile.h b/llvm/lib/Target/ARM/ARMTargetObjectFile.h index 24e755ddac2..dbb8128269d 100644 --- a/llvm/lib/Target/ARM/ARMTargetObjectFile.h +++ b/llvm/lib/Target/ARM/ARMTargetObjectFile.h @@ -11,19 +11,19 @@ #define LLVM_LIB_TARGET_ARM_ARMTARGETOBJECTFILE_H #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h" +#include "llvm/MC/MCExpr.h" namespace llvm { -class MCContext; -class TargetMachine; - class ARMElfTargetObjectFile : public TargetLoweringObjectFileELF { mutable bool genExecuteOnly = false; + protected: - const MCSection *AttributesSection; + const MCSection *AttributesSection = nullptr; + public: ARMElfTargetObjectFile() - : TargetLoweringObjectFileELF(), AttributesSection(nullptr) { + : TargetLoweringObjectFileELF() { PLTRelativeVariantKind = MCSymbolRefExpr::VK_ARM_PREL31; } @@ -47,4 +47,4 @@ public: } // end namespace llvm -#endif +#endif // LLVM_LIB_TARGET_ARM_ARMTARGETOBJECTFILE_H |