diff options
Diffstat (limited to 'include/llvm/MC/MCSection.h')
-rw-r--r-- | include/llvm/MC/MCSection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/MC/MCSection.h b/include/llvm/MC/MCSection.h index e9f7666..bdc46be 100644 --- a/include/llvm/MC/MCSection.h +++ b/include/llvm/MC/MCSection.h @@ -43,12 +43,12 @@ namespace llvm { public: virtual ~MCSection(); - bool isDirective() const { return IsDirective; } - static MCSection *Create(const StringRef &Name, bool IsDirective, SectionKind K, MCContext &Ctx); const std::string &getName() const { return Name; } + bool isDirective() const { return IsDirective; } + SectionKind getKind() const { return Kind; } }; |