[llvm-commits] [llvm] r127252 - /llvm/trunk/include/llvm/Value.h
Chris Lattner
sabre at nondot.org
Tue Mar 8 08:59:03 PST 2011
Author: lattner
Date: Tue Mar 8 10:59:03 2011
New Revision: 127252
URL: http://llvm.org/viewvc/llvm-project?rev=127252&view=rev
Log:
fix incorrect comment.
Modified:
llvm/trunk/include/llvm/Value.h
Modified: llvm/trunk/include/llvm/Value.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Value.h?rev=127252&r1=127251&r2=127252&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Value.h (original)
+++ llvm/trunk/include/llvm/Value.h Tue Mar 8 10:59:03 2011
@@ -51,8 +51,8 @@
/// 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
More information about the llvm-commits
mailing list