diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-06-24 03:19:35 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-06-24 03:19:35 +0000 |
commit | 02b54b47bf6c27d1d63f591a4f160c2360322a5d (patch) | |
tree | 0d8e88446742e4c7f82be85d726c3f8aae0bb4aa | |
parent | bd3a29d0638eef55f0855280c53e4badee35b130 (diff) | |
download | bcm5719-llvm-02b54b47bf6c27d1d63f591a4f160c2360322a5d.tar.gz bcm5719-llvm-02b54b47bf6c27d1d63f591a4f160c2360322a5d.zip |
Don't repeat name in comments.
llvm-svn: 240516
-rw-r--r-- | llvm/include/llvm/Object/ObjectFile.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/include/llvm/Object/ObjectFile.h b/llvm/include/llvm/Object/ObjectFile.h index e00fe0ed0a2..e6f816c2d4f 100644 --- a/llvm/include/llvm/Object/ObjectFile.h +++ b/llvm/include/llvm/Object/ObjectFile.h @@ -35,8 +35,8 @@ class symbol_iterator; class SectionRef; typedef content_iterator<SectionRef> section_iterator; -/// RelocationRef - This is a value type class that represents a single -/// relocation in the list of relocations in the object file. +/// This is a value type class that represents a single relocation in the list +/// of relocations in the object file. class RelocationRef { DataRefImpl RelocationPimpl; const ObjectFile *OwningObject; @@ -71,8 +71,8 @@ public: }; typedef content_iterator<RelocationRef> relocation_iterator; -/// SectionRef - This is a value type class that represents a single section in -/// the list of sections in the object file. +/// This is a value type class that represents a single section in the list of +/// sections in the object file. class SectionRef { friend class SymbolRef; DataRefImpl SectionPimpl; @@ -116,8 +116,8 @@ public: const ObjectFile *getObject() const; }; -/// SymbolRef - This is a value type class that represents a single symbol in -/// the list of symbols in the object file. +/// This is a value type class that represents a single symbol in the list of +/// symbols in the object file. class SymbolRef : public BasicSymbolRef { friend class SectionRef; @@ -170,9 +170,9 @@ public: } }; -/// ObjectFile - This class is the base class for all object file types. -/// Concrete instances of this object are created by createObjectFile, which -/// figures out which type to create. +/// This class is the base class for all object file types. Concrete instances +/// of this object are created by createObjectFile, which figures out which type +/// to create. class ObjectFile : public SymbolicFile { virtual void anchor(); ObjectFile() = delete; |