[llvm-commits] [llvm] r96610 - /llvm/trunk/include/llvm/Metadata.h
Devang Patel
dpatel at apple.com
Thu Feb 18 13:03:37 PST 2010
Author: dpatel
Date: Thu Feb 18 15:03:36 2010
New Revision: 96610
URL: http://llvm.org/viewvc/llvm-project?rev=96610&view=rev
Log:
Fix comments.
Modified:
llvm/trunk/include/llvm/Metadata.h
Modified: llvm/trunk/include/llvm/Metadata.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Metadata.h?rev=96610&r1=96609&r2=96610&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Metadata.h (original)
+++ llvm/trunk/include/llvm/Metadata.h Thu Feb 18 15:03:36 2010
@@ -104,11 +104,12 @@
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:
More information about the llvm-commits
mailing list