Just returning false is the default.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 6 Feb 2014 00:03:15 +0000 (00:03 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 6 Feb 2014 00:03:15 +0000 (00:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200890 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp

index 698487980c37a076ad15936ffe5232b029257380..a7189f7def288b2532f97f1d3e15765acf236a70 100644 (file)
@@ -683,10 +683,6 @@ public:
                                      MachO::CPU_TYPE_ARM,
                                      Subtype);
   }
-
-  virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
-    return false;
-  }
 };
 
 } // end anonymous namespace
index 0d420815ea62b942bd06c12b7619122be34e6be1..3978797ea9d12b61939a13f29066efb2fb354fb5 100644 (file)
@@ -170,10 +170,6 @@ namespace {
           (is64 ? MachO::CPU_TYPE_POWERPC64 : MachO::CPU_TYPE_POWERPC),
           MachO::CPU_SUBTYPE_POWERPC_ALL);
     }
-
-    virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
-      return false;
-    }
   };
 
   class ELFPPCAsmBackend : public PPCAsmBackend {
@@ -187,10 +183,6 @@ namespace {
       bool is64 = getPointerSize() == 8;
       return createPPCELFObjectWriter(OS, is64, OSABI);
     }
-
-    virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
-      return false;
-    }
   };
 
 } // end anonymous namespace
index 82248ee5b4b5b63b7d98dd7158faeb0f30535478..6a42d281178343a6c8cec499f2ebecf581ebab8b 100644 (file)
@@ -141,10 +141,6 @@ namespace {
       uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(OSType);
       return createSparcELFObjectWriter(OS, is64Bit(), OSABI);
     }
-
-    virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
-      return false;
-    }
   };
 
 } // end anonymous namespace
index 26a8faeea10b998458706f1b6a79c6a1ebfdb10a..1098c911bdf174ceb69f9058a3a18dd3655f3b75 100644 (file)
@@ -70,10 +70,6 @@ public:
     LLVM_OVERRIDE {
     return createSystemZObjectWriter(OS, OSABI);
   }
-  virtual bool doesSectionRequireSymbols(const MCSection &Section) const
-    LLVM_OVERRIDE {
-    return false;
-  }
 };
 } // end anonymous namespace