diff options
Diffstat (limited to 'include/llvm/MC/MCLabel.h')
| -rw-r--r-- | include/llvm/MC/MCLabel.h | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/include/llvm/MC/MCLabel.h b/include/llvm/MC/MCLabel.h index de2d0af1423a..a12473fdad02 100644 --- a/include/llvm/MC/MCLabel.h +++ b/include/llvm/MC/MCLabel.h @@ -17,41 +17,41 @@ #include "llvm/Support/Compiler.h" namespace llvm { - class MCContext; - class raw_ostream; +class MCContext; +class raw_ostream; - /// \brief Instances of this class represent a label name in the MC file, - /// and MCLabel are created and uniqued by the MCContext class. MCLabel - /// should only be constructed for valid instances in the object file. - class MCLabel { - // \brief The instance number of this Directional Local Label. - unsigned Instance; +/// \brief Instances of this class represent a label name in the MC file, +/// and MCLabel are created and uniqued by the MCContext class. MCLabel +/// should only be constructed for valid instances in the object file. +class MCLabel { + // \brief The instance number of this Directional Local Label. + unsigned Instance; - private: // MCContext creates and uniques these. - friend class MCContext; - MCLabel(unsigned instance) - : Instance(instance) {} +private: // MCContext creates and uniques these. + friend class MCContext; + MCLabel(unsigned instance) : Instance(instance) {} - MCLabel(const MCLabel&) = delete; - void operator=(const MCLabel&) = delete; - public: - /// \brief Get the current instance of this Directional Local Label. - unsigned getInstance() const { return Instance; } + MCLabel(const MCLabel &) = delete; + void operator=(const MCLabel &) = delete; - /// \brief Increment the current instance of this Directional Local Label. - unsigned incInstance() { return ++Instance; } +public: + /// \brief Get the current instance of this Directional Local Label. + unsigned getInstance() const { return Instance; } - /// \brief Print the value to the stream \p OS. - void print(raw_ostream &OS) const; + /// \brief Increment the current instance of this Directional Local Label. + unsigned incInstance() { return ++Instance; } - /// \brief Print the value to stderr. - void dump() const; - }; + /// \brief Print the value to the stream \p OS. + void print(raw_ostream &OS) const; - inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) { - Label.print(OS); - return OS; - } + /// \brief Print the value to stderr. + void dump() const; +}; + +inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) { + Label.print(OS); + return OS; +} } // end namespace llvm #endif |
