diff options
Diffstat (limited to 'include/llvm/MC/MCSectionMachO.h')
| -rw-r--r-- | include/llvm/MC/MCSectionMachO.h | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/include/llvm/MC/MCSectionMachO.h b/include/llvm/MC/MCSectionMachO.h index 71ea8f3e901d..898f5714907f 100644 --- a/include/llvm/MC/MCSectionMachO.h +++ b/include/llvm/MC/MCSectionMachO.h @@ -14,8 +14,8 @@  #ifndef LLVM_MC_MCSECTIONMACHO_H  #define LLVM_MC_MCSECTIONMACHO_H -#include "llvm/MC/MCSection.h"  #include "llvm/ADT/StringRef.h" +#include "llvm/MC/MCSection.h"  namespace llvm { @@ -145,6 +145,14 @@ public:      return StringRef(SectionName);    } +  virtual std::string getLabelBeginName() const { +    return StringRef(getSegmentName().str() + getSectionName().str() + "_begin"); +  } + +  virtual std::string getLabelEndName() const { +    return StringRef(getSegmentName().str() + getSectionName().str() + "_end"); +  } +    unsigned getTypeAndAttributes() const { return TypeAndAttributes; }    unsigned getStubSize() const { return Reserved2; } | 
