diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-02-01 14:31:23 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-02-01 14:31:23 +0000 |
commit | ab5cb36c401cd31c7e3cb57d7affc0efff3c61fb (patch) | |
tree | 3d08d8b8d921c4a58f39196c5b537900ea1aa194 /llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h | |
parent | c956ab66037e3b0e6b3a039728348de1db1c4ad6 (diff) | |
download | bcm5719-llvm-ab5cb36c401cd31c7e3cb57d7affc0efff3c61fb.tar.gz bcm5719-llvm-ab5cb36c401cd31c7e3cb57d7affc0efff3c61fb.zip |
[multiversion] Remove the function parameter from the unrolling
preferences interface on TTI now that all of TTI is per-function.
llvm-svn: 227741
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h b/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h index 0429a26c200..cef70794234 100644 --- a/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h +++ b/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h @@ -71,8 +71,7 @@ public: Type *Ty); TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth); - void getUnrollingPreferences(const Function *F, Loop *L, - TTI::UnrollingPreferences &UP); + void getUnrollingPreferences(Loop *L, TTI::UnrollingPreferences &UP); /// @} |