X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FMC%2FMCSection.h;h=21fdb6bd39b8ba9bb55f0143c17b9f5be3dce02f;hb=57ac1f458a754f30cf500410b438fb260f9b8fe5;hp=3e5b5f13f324433e1a506ecc803fcde94557c19a;hpb=083cf1574facc9ce468fba1735c794bd7e520108;p=oota-llvm.git diff --git a/include/llvm/MC/MCSection.h b/include/llvm/MC/MCSection.h index 3e5b5f13f32..21fdb6bd39b 100644 --- a/include/llvm/MC/MCSection.h +++ b/include/llvm/MC/MCSection.h @@ -14,13 +14,10 @@ #ifndef LLVM_MC_MCSECTION_H #define LLVM_MC_MCSECTION_H -#include -#include "llvm/ADT/StringRef.h" #include "llvm/MC/SectionKind.h" -#include "llvm/Support/Casting.h" +#include "llvm/Support/Compiler.h" namespace llvm { - class MCContext; class MCAsmInfo; class raw_ostream; @@ -32,13 +29,12 @@ namespace llvm { enum SectionVariant { SV_COFF = 0, SV_ELF, - SV_MachO, - SV_PIC16 + SV_MachO }; private: - MCSection(const MCSection&); // DO NOT IMPLEMENT - void operator=(const MCSection&); // DO NOT IMPLEMENT + MCSection(const MCSection&) LLVM_DELETED_FUNCTION; + void operator=(const MCSection&) LLVM_DELETED_FUNCTION; protected: MCSection(SectionVariant V, SectionKind K) : Variant(V), Kind(K) {} SectionVariant Variant; @@ -65,7 +61,9 @@ namespace llvm { // "optimized nops" to fill instead of 0s. virtual bool UseCodeAlign() const = 0; - static bool classof(const MCSection *) { return true; } + /// isVirtualSection - Check whether this section is "virtual", that is + /// has no actual object file contents. + virtual bool isVirtualSection() const = 0; }; } // end namespace llvm