aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-02-02 21:10:27 +0000
committerDan Gohman <gohman@apple.com>2010-02-02 21:10:27 +0000
commit00234a7e3f0ead413c541e5d6bbeacbbcc5e4c5f (patch)
tree7936c04b3ab1ec68ac854007587ce17545d5f111
parent53f24980e669cfa1585636897172a9c2013b850e (diff)
downloadexternal_llvm-00234a7e3f0ead413c541e5d6bbeacbbcc5e4c5f.zip
external_llvm-00234a7e3f0ead413c541e5d6bbeacbbcc5e4c5f.tar.gz
external_llvm-00234a7e3f0ead413c541e5d6bbeacbbcc5e4c5f.tar.bz2
Fix function names in comments. Thanks Duncan!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95126 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Analysis/ScalarEvolution.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h
index 315b782..d1bd3c8 100644
--- a/include/llvm/Analysis/ScalarEvolution.h
+++ b/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);