[llvm-commits] [llvm] r84407 - /llvm/trunk/include/llvm/Instructions.h

Chris Lattner sabre at nondot.org
Sat Oct 17 22:08:08 PDT 2009


Author: lattner
Date: Sun Oct 18 00:08:07 2009
New Revision: 84407

URL: http://llvm.org/viewvc/llvm-project?rev=84407&view=rev
Log:
punctuate properly

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

Modified: llvm/trunk/include/llvm/Instructions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Instructions.h?rev=84407&r1=84406&r2=84407&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Instructions.h (original)
+++ llvm/trunk/include/llvm/Instructions.h Sun Oct 18 00:08:07 2009
@@ -1100,11 +1100,11 @@
   }
 
   /// getCalledValue - Get a pointer to the function that is invoked by this
-  /// instruction
+  /// instruction.
   const Value *getCalledValue() const { return Op<0>(); }
         Value *getCalledValue()       { return Op<0>(); }
 
-  /// setCalledFunction - Set the function called
+  /// setCalledFunction - Set the function called.
   void setCalledFunction(Value* Fn) {
     Op<0>() = Fn;
   }





More information about the llvm-commits mailing list