From 907cde3cc2e96b8558960641d2d2c78870a019b4 Mon Sep 17 00:00:00 2001 From: Dylan McKay Date: Sat, 24 Sep 2016 11:38:08 +0000 Subject: [PATCH] [AVR] Update signature of AVRTargetObjectFile::SelectSectionForGlobal It was changed recently, and was breaking compilation of the backend. llvm-svn: 282329 --- llvm/lib/Target/AVR/AVRTargetObjectFile.cpp | 5 +++-- llvm/lib/Target/AVR/AVRTargetObjectFile.h | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp b/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp index 85f03e8..c1d7a4e 100644 --- a/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp +++ b/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp @@ -27,7 +27,7 @@ void AVRTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM) { MCSection * AVRTargetObjectFile::SelectSectionForGlobal(const GlobalValue *GV, - SectionKind Kind, Mangler &Mang, + SectionKind Kind, const TargetMachine &TM) const { // Global values in flash memory are placed in the progmem.data section // unless they already have a user assigned section. @@ -35,6 +35,7 @@ AVRTargetObjectFile::SelectSectionForGlobal(const GlobalValue *GV, return ProgmemDataSection; // Otherwise, we work the same way as ELF. - return Base::SelectSectionForGlobal(GV, Kind, Mang, TM); + return Base::SelectSectionForGlobal(GV, Kind, TM); } } // end of namespace llvm + diff --git a/llvm/lib/Target/AVR/AVRTargetObjectFile.h b/llvm/lib/Target/AVR/AVRTargetObjectFile.h index 5876125..19b2fe7 100644 --- a/llvm/lib/Target/AVR/AVRTargetObjectFile.h +++ b/llvm/lib/Target/AVR/AVRTargetObjectFile.h @@ -22,7 +22,6 @@ public: void Initialize(MCContext &ctx, const TargetMachine &TM) override; MCSection *SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind, - Mangler &Mang, const TargetMachine &TM) const override; private: -- 2.7.4