diff options
author | Devang Patel <dpatel@apple.com> | 2010-02-18 21:03:36 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-02-18 21:03:36 +0000 |
commit | 0ce7b1255c86dcfdfdd4dfad9ea625de12657944 (patch) | |
tree | 222ead217a9c489b78deea831dbe6a3dcdcffd6c | |
parent | 06fdaccc89d9abdc7e03797b25173791a2f5692f (diff) |
Fix comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96610 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Metadata.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/Metadata.h b/include/llvm/Metadata.h index 0369f5e80c..e5363228a3 100644 --- a/include/llvm/Metadata.h +++ b/include/llvm/Metadata.h @@ -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: |