diff options
author | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-10-24 18:19:41 +0000 |
---|---|---|
committer | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-10-24 18:19:41 +0000 |
commit | ecb28f2b49e0f0538a1d147c4742b04c90ccd3ad (patch) | |
tree | 503094f9a3c9470f724723c75d2bed3c61a7581e /lib/Target/PIC16/PIC16TargetObjectFile.h | |
parent | 209e6c69d9f87a07cc840e20344b55982762f3ba (diff) |
Revert back 85006 for now as it breaks PIC16 tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PIC16/PIC16TargetObjectFile.h')
-rw-r--r-- | lib/Target/PIC16/PIC16TargetObjectFile.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Target/PIC16/PIC16TargetObjectFile.h b/lib/Target/PIC16/PIC16TargetObjectFile.h index 0b0ad43ff9..ca07bedafe 100644 --- a/lib/Target/PIC16/PIC16TargetObjectFile.h +++ b/lib/Target/PIC16/PIC16TargetObjectFile.h @@ -56,7 +56,6 @@ namespace llvm { mutable std::vector<PIC16Section *> UDATASections_; mutable std::vector<PIC16Section *> IDATASections_; mutable PIC16Section * ROMDATASection_; - mutable PIC16Section * SHAREDUDATASection_; /// Standard Auto Sections. mutable std::vector<PIC16Section *> AUTOSections_; @@ -111,10 +110,6 @@ namespace llvm { /// Allocate DATA at user specified address. const MCSection *allocateAtGivenAddress(const GlobalVariable *GV, const std::string &Addr) const; - - /// Allocate a shared variable to SHARED section. - const MCSection *allocateSHARED(const GlobalVariable *GV, - Mangler *Mang) const; public: PIC16TargetObjectFile(); @@ -152,9 +147,6 @@ namespace llvm { const PIC16Section *ROMDATASection() const { return ROMDATASection_; } - const PIC16Section *SHAREDUDATASection() const { - return SHAREDUDATASection_; - } const std::vector<PIC16Section *> &AUTOSections() const { return AUTOSections_; } |