Fix comments.
authorDevang Patel <dpatel@apple.com>
Thu, 18 Feb 2010 21:03:36 +0000 (21:03 +0000)
committerDevang Patel <dpatel@apple.com>
Thu, 18 Feb 2010 21:03:36 +0000 (21:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96610 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Metadata.h

index 0369f5e80ca136d7dd6b088909ec2ad0968b2716..e5363228a3966bff80e0e9cb14b3c98b13e145bf 100644 (file)
@@ -104,11 +104,12 @@ class MDNode : public Value, public FoldingSetNode {
     FL_Yes = 1
   };
   
-  // Replace each instance of F from the operand list of this node with T.
+  /// replaceOperand - Replace each instance of F from the operand list of this 
+  /// node with T.
   void replaceOperand(MDNodeOperand *Op, Value *NewVal);
   ~MDNode();
-    // replaceAllOperandsWithNull - This is used while destroying llvm context to 
-  // gracefully delete all nodes. This method replaces all operands with null.
+  /// replaceAllOperandsWithNull - This is used while destroying llvm context to 
+  /// gracefully delete all nodes. This method replaces all operands with null.
   void replaceAllOperandsWithNull();
 
 protected: