no really, I can spell!
[oota-llvm.git] / include / llvm / CodeGen / MachineOperand.h
index 10aa493e9df65f5f5c0bf18565fd978fee66a1d3..7d39d973cb32f835df1bda0a5345e88ed258e620 100644 (file)
@@ -109,7 +109,7 @@ private:
         int Index;                // For MO_*Index - The index itself.
         const char *SymbolName;   // For MO_ExternalSymbol.
         GlobalValue *GV;          // For MO_GlobalAddress.
-       MDNode *Node;             // For MO_Metadata.
+        MDNode *Node;             // For MO_Metadata.
       } Val;
       int64_t Offset;   // An offset from the object.
     } OffsetedInfo;
@@ -164,6 +164,8 @@ public:
   bool isGlobal() const { return OpKind == MO_GlobalAddress; }
   /// isSymbol - Tests if this is a MO_ExternalSymbol operand.
   bool isSymbol() const { return OpKind == MO_ExternalSymbol; }
+  /// isMetadata - Tests if this is a MO_Metadata operand.
+  bool isMetadata() const { return OpKind == MO_Metadata; }
 
   //===--------------------------------------------------------------------===//
   // Accessors for Register Operands
@@ -325,7 +327,7 @@ public:
   }
 
   void setOffset(int64_t Offset) {
-    assert((isGlobal() || isSymbol() || isCPI()) &&
+    assert((isGlobal() || isSymbol() || isCPI() || isMetadata()) &&
         "Wrong MachineOperand accessor");
     Contents.OffsetedInfo.Offset = Offset;
   }
@@ -431,7 +433,7 @@ public:
     return Op;
   }
   static MachineOperand CreateMDNode(MDNode *N, int64_t Offset,
-                                    unsigned char TargetFlags = 0) {
+                                     unsigned char TargetFlags = 0) {
     MachineOperand Op(MachineOperand::MO_Metadata);
     Op.Contents.OffsetedInfo.Val.Node = N;
     Op.setOffset(Offset);