summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Atanasyan <simon@atanasyan.com>2014-03-09 13:05:03 +0000
committerSimon Atanasyan <simon@atanasyan.com>2014-03-09 13:05:03 +0000
commit16c425e9853fe90ac90bd83a58925739a4ff750d (patch)
treef10476d40e4e148c388641920053b8196c9a0ad5
parent8801c451102a3e4101f984fe35986891d0aab641 (diff)
downloadbcm5719-llvm-16c425e9853fe90ac90bd83a58925739a4ff750d.tar.gz
bcm5719-llvm-16c425e9853fe90ac90bd83a58925739a4ff750d.zip
[Mips] Mark class by 'final' keyword.
llvm-svn: 203401
-rw-r--r--lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h b/lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h
index 92ae0a369ad..e3fee902e92 100644
--- a/lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h
+++ b/lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h
@@ -60,15 +60,15 @@ private:
};
/// \brief Mips Runtime file.
-template <class ELFType> class MipsRuntimeFile : public CRuntimeFile<ELFType> {
+template <class ELFType>
+class MipsRuntimeFile final : public CRuntimeFile<ELFType> {
public:
MipsRuntimeFile(const MipsLinkingContext &context)
: CRuntimeFile<ELFType>(context, "Mips runtime file") {}
};
/// \brief TargetHandler for Mips
-class MipsTargetHandler final
- : public DefaultTargetHandler<Mips32ElELFType> {
+class MipsTargetHandler final : public DefaultTargetHandler<Mips32ElELFType> {
public:
MipsTargetHandler(MipsLinkingContext &context);
OpenPOWER on IntegriCloud