summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-03-08 16:59:03 +0000
committerChris Lattner <sabre@nondot.org>2011-03-08 16:59:03 +0000
commitdb04b81014cadc6ecdbaaa918a89a180511c6855 (patch)
tree33b4fa53d830c4bc4470aa7d5610e36803bc8c85 /include
parenta83688fcb55bbdcb1b02afbd456b3fc49825cf35 (diff)
downloadllvm-db04b81014cadc6ecdbaaa918a89a180511c6855.tar.gz
llvm-db04b81014cadc6ecdbaaa918a89a180511c6855.tar.bz2
llvm-db04b81014cadc6ecdbaaa918a89a180511c6855.tar.xz
fix incorrect comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127252 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Value.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h
index 130e2735f5..3a1c3ca298 100644
--- a/include/llvm/Value.h
+++ b/include/llvm/Value.h
@@ -51,8 +51,8 @@ class MDNode;
/// This is a very important LLVM class. It is the base class of all values
/// computed by a program that may be used as operands to other values. Value is
/// the super class of other important classes such as Instruction and Function.
-/// All Values have a Type. Type is not a subclass of Value. All types can have
-/// a name and they should belong to some Module. Setting the name on the Value
+/// All Values have a Type. Type is not a subclass of Value. Some values can
+/// have a name and they belong to some Module. Setting the name on the Value
/// automatically updates the module's symbol table.
///
/// Every value has a "use list" that keeps track of which other Values are