fit in 80 cols
authorChris Lattner <sabre@nondot.org>
Sun, 21 Jun 2009 01:52:00 +0000 (01:52 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 21 Jun 2009 01:52:00 +0000 (01:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73838 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineOperand.h

index 7a4168447b62e76e96811269385d964fa225e575..ba538d795ffd4c2650f6676ebe12f570df753913 100644 (file)
@@ -33,15 +33,15 @@ class raw_ostream;
 class MachineOperand {
 public:
   enum MachineOperandType {
-    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
+    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: