diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-10-21 18:08:09 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-10-21 18:08:09 +0000 |
commit | 325ee6e115e97a2e0c2a37d69d25269dabbe77df (patch) | |
tree | dd834a91e6032e44afd5a28d3de9382e84e076c3 /include | |
parent | 1d82537762a0f4019bde301d498d190140585f57 (diff) | |
download | external_llvm-325ee6e115e97a2e0c2a37d69d25269dabbe77df.zip external_llvm-325ee6e115e97a2e0c2a37d69d25269dabbe77df.tar.gz external_llvm-325ee6e115e97a2e0c2a37d69d25269dabbe77df.tar.bz2 |
Remove unused SCEV functions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/ScalarEvolution.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h index 59c8b8a..3d37651 100644 --- a/include/llvm/Analysis/ScalarEvolution.h +++ b/include/llvm/Analysis/ScalarEvolution.h @@ -641,20 +641,11 @@ namespace llvm { /// const SCEV *getSizeOfExpr(Type *IntTy, Type *AllocTy); - /// getAlignOfExpr - Return an expression for alignof AllocTy - /// - const SCEV *getAlignOfExpr(Type *AllocTy); - /// getOffsetOfExpr - Return an expression for offsetof on the given field /// with type IntTy /// const SCEV *getOffsetOfExpr(Type *IntTy, StructType *STy, unsigned FieldNo); - /// getOffsetOfExpr - Return an expression for offsetof on the given field - /// that is type IntTy - /// - const SCEV *getOffsetOfExpr(Type *IntTy, Type *CTy, Constant *FieldNo); - /// getNegativeSCEV - Return the SCEV object corresponding to -V. /// const SCEV *getNegativeSCEV(const SCEV *V); |