diff options
author | Dan Gohman <gohman@apple.com> | 2008-12-23 18:20:16 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-12-23 18:20:16 +0000 |
commit | 76da281a6e36a121f0fe121e376702b18fbf0b6c (patch) | |
tree | 288bc5c6d4c227f4049078058c34bf6fb8dba128 | |
parent | 072e52f1709ef803c899bb06153627a879ddac3e (diff) | |
download | bcm5719-llvm-76da281a6e36a121f0fe121e376702b18fbf0b6c.tar.gz bcm5719-llvm-76da281a6e36a121f0fe121e376702b18fbf0b6c.zip |
Comment MO_FPImmediate and doxygenate surrounding comments.
llvm-svn: 61374
-rw-r--r-- | llvm/include/llvm/CodeGen/MachineOperand.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineOperand.h b/llvm/include/llvm/CodeGen/MachineOperand.h index e3cc8140117..820c6ef3834 100644 --- a/llvm/include/llvm/CodeGen/MachineOperand.h +++ b/llvm/include/llvm/CodeGen/MachineOperand.h @@ -33,15 +33,15 @@ class raw_ostream; class MachineOperand { public: enum MachineOperandType { - MO_Register, // Register operand. - MO_Immediate, // Immediate Operand - MO_FPImmediate, - MO_MachineBasicBlock, // MachineBasicBlock reference - MO_FrameIndex, // Abstract Stack Frame Index - MO_ConstantPoolIndex, // Address of indexed Constant in Constant Pool - MO_JumpTableIndex, // Address of indexed Jump Table for switch - MO_ExternalSymbol, // Name of external global symbol - MO_GlobalAddress // Address of a global value + MO_Register, ///< Register operand. + MO_Immediate, ///< Immediate operand + MO_FPImmediate, ///< Floating-point immediate operand + MO_MachineBasicBlock, ///< MachineBasicBlock reference + MO_FrameIndex, ///< Abstract Stack Frame Index + MO_ConstantPoolIndex, ///< Address of indexed Constant in Constant Pool + MO_JumpTableIndex, ///< Address of indexed Jump Table for switch + MO_ExternalSymbol, ///< Name of external global symbol + MO_GlobalAddress ///< Address of a global value }; private: |