[llvm-commits] [llvm] r95126 - /llvm/trunk/include/llvm/Analysis/ScalarEvolution.h

Dan Gohman gohman at apple.com
Tue Feb 2 13:10:27 PST 2010


Author: djg
Date: Tue Feb  2 15:10:27 2010
New Revision: 95126

URL: http://llvm.org/viewvc/llvm-project?rev=95126&view=rev
Log:
Fix function names in comments. Thanks Duncan!

Modified:
    llvm/trunk/include/llvm/Analysis/ScalarEvolution.h

Modified: llvm/trunk/include/llvm/Analysis/ScalarEvolution.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/ScalarEvolution.h?rev=95126&r1=95125&r2=95126&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/ScalarEvolution.h (original)
+++ llvm/trunk/include/llvm/Analysis/ScalarEvolution.h Tue Feb  2 15:10:27 2010
@@ -459,15 +459,15 @@
     ///
     const SCEV *getSizeOfExpr(const Type *AllocTy);
 
-    /// getSizeOfExpr - Return an expression for alignof on the given type.
+    /// getAlignOfExpr - Return an expression for alignof on the given type.
     ///
     const SCEV *getAlignOfExpr(const Type *AllocTy);
 
-    /// getSizeOfExpr - Return an expression for offsetof on the given field.
+    /// getOffsetOfExpr - Return an expression for offsetof on the given field.
     ///
     const SCEV *getOffsetOfExpr(const StructType *STy, unsigned FieldNo);
 
-    /// getSizeOfExpr - Return an expression for offsetof on the given field.
+    /// getOffsetOfExpr - Return an expression for offsetof on the given field.
     ///
     const SCEV *getOffsetOfExpr(const Type *CTy, Constant *FieldNo);
 





More information about the llvm-commits mailing list