X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=include%2Fllvm%2FMC%2FMCAsmBackend.h;h=15a956b0a62928d7ece576c7c5e12bf236882b76;hp=a6d41392724e0198dbe5772aac69252c0c538fa7;hb=84acf09f3222aff1d99c0b549fc47d969c0f75e6;hpb=6a72b20325d01c27cb6e730cc8f080a8bea2cd4f diff --git a/include/llvm/MC/MCAsmBackend.h b/include/llvm/MC/MCAsmBackend.h index a6d41392724..15a956b0a62 100644 --- a/include/llvm/MC/MCAsmBackend.h +++ b/include/llvm/MC/MCAsmBackend.h @@ -67,6 +67,14 @@ public: return false; } + /// isSectionAtomizable - Check whether the given section can be split into + /// atoms. + /// + /// \see MCAssembler::isSymbolLinkerVisible(). + virtual bool isSectionAtomizable(const MCSection &Section) const { + return true; + } + /// @name Target Fixup Interfaces /// @{