Add a few doxygen comments.
authorDan Gohman <gohman@apple.com>
Tue, 19 Aug 2008 18:06:12 +0000 (18:06 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 19 Aug 2008 18:06:12 +0000 (18:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54997 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/FastISelEmitter.cpp

index 8007b7ed702bfd7d22add5efd542209079da73f5..ae12201600059832afa88a951692c1c7334ca9ba 100644 (file)
@@ -44,6 +44,9 @@ using namespace llvm;
 
 namespace {
 
+/// OperandsSignature - This class holds a description of a list of operand
+/// types. It has utility methods for emitting text based on the operands.
+///
 struct OperandsSignature {
   std::vector<std::string> Operands;
 
@@ -86,6 +89,9 @@ struct OperandsSignature {
   }
 };
 
+/// InstructionMemo - This class holds additional information about an
+/// instruction needed to emit code for it.
+///
 struct InstructionMemo {
   std::string Name;
   const CodeGenRegisterClass *RC;