[llvm-commits] [llvm] r65953 - /llvm/trunk/include/llvm/BasicBlock.h

Dan Gohman gohman at apple.com
Tue Mar 3 09:44:55 PST 2009


Author: djg
Date: Tue Mar  3 11:44:54 2009
New Revision: 65953

URL: http://llvm.org/viewvc/llvm-project?rev=65953&view=rev
Log:
Make a comment less terse.

Modified:
    llvm/trunk/include/llvm/BasicBlock.h

Modified: llvm/trunk/include/llvm/BasicBlock.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/BasicBlock.h?rev=65953&r1=65952&r2=65953&view=diff

==============================================================================
--- llvm/trunk/include/llvm/BasicBlock.h (original)
+++ llvm/trunk/include/llvm/BasicBlock.h Tue Mar  3 11:44:54 2009
@@ -103,7 +103,8 @@
         Function *getParent()       { return Parent; }
 
   /// use_back - Specialize the methods defined in Value, as we know that an
-  /// BasicBlock can only be used by Instructions (specifically PHI and terms).
+  /// BasicBlock can only be used by Instructions (specifically PHI nodes and
+  /// terminators).
   Instruction       *use_back()       { return cast<Instruction>(*use_begin());}
   const Instruction *use_back() const { return cast<Instruction>(*use_begin());}
   





More information about the llvm-commits mailing list