diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-02 21:10:27 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-02 21:10:27 +0000 |
commit | 6013cf9cbe9a18d06b70087bd0733a4c3bb858ee (patch) | |
tree | 0052a6dc4cdcbef9046206e60abc38b5f3a4e678 | |
parent | 60272554aa7d0cb93875897ad0c0a1aa67096352 (diff) | |
download | bcm5719-llvm-6013cf9cbe9a18d06b70087bd0733a4c3bb858ee.tar.gz bcm5719-llvm-6013cf9cbe9a18d06b70087bd0733a4c3bb858ee.zip |
Fix function names in comments. Thanks Duncan!
llvm-svn: 95126
-rw-r--r-- | llvm/include/llvm/Analysis/ScalarEvolution.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Analysis/ScalarEvolution.h b/llvm/include/llvm/Analysis/ScalarEvolution.h index 315b782baa3..d1bd3c871fe 100644 --- a/llvm/include/llvm/Analysis/ScalarEvolution.h +++ b/llvm/include/llvm/Analysis/ScalarEvolution.h @@ -459,15 +459,15 @@ namespace llvm { /// 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); |