Add a few doxygen comments.

llvm-svn: 54997
This commit is contained in:
Dan Gohman 2008-08-19 18:06:12 +00:00
parent 522012fc56
commit dbd5328238
1 changed files with 6 additions and 0 deletions

View 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;