[ELF] Clean up doxygen comments.
authorMichael J. Spencer <bigcheesegs@gmail.com>
Tue, 29 Jan 2013 01:00:04 +0000 (01:00 +0000)
committerMichael J. Spencer <bigcheesegs@gmail.com>
Tue, 29 Jan 2013 01:00:04 +0000 (01:00 +0000)
llvm-svn: 173740

lld/lib/ReaderWriter/ELF/ELFTargetHandler.h

index 06c9af2..6afbd96 100644 (file)
@@ -6,6 +6,13 @@
 // License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
+///
+/// \file
+/// \brief These interfaces provide target specific hooks to change the linker's
+/// behaivor.
+///
+//===----------------------------------------------------------------------===//
+
 #ifndef LLD_READER_WRITER_ELF_TARGETHANDLER_H
 #define LLD_READER_WRITER_ELF_TARGETHANDLER_H
 
 #include <vector>
 #include <unordered_map>
 
-/// \brief All ELF targets would want to override the way the ELF file gets
-/// processed by the linker. This class serves as an interface which would be
-/// used to derive the needed functionality of a particular target/platform.
-
-/// \brief The target registers a set of handlers for overriding target specific
-/// attributes for a DefinedAtom. The Reader uses this class to query for the
-/// type of atom and its permissions 
-
 namespace lld {
-
 template <class ELFT> class ELFDefinedAtom;
-
 namespace elf {
-
+/// \brief The target registers a set of handlers for overriding target specific
+/// attributes for a DefinedAtom. The Reader uses this class to query for the
+/// type of atom and its permissions 
 template <class ELFT> class ELFTargetAtomHandler {
 public:
   typedef llvm::object::Elf_Sym_Impl<ELFT> Elf_Sym;