diff options
author | Adam Nemet <anemet@apple.com> | 2015-08-07 19:44:48 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2015-08-07 19:44:48 +0000 |
commit | 3a91e947344b6c8d757707efbe7bf6703597cb9b (patch) | |
tree | 6cf057a049269c50586a9c6acdca9d4271857e83 /llvm/lib/Analysis/LoopAccessAnalysis.cpp | |
parent | eafbc9dc474e99c95f0625f44aadc1bb64790795 (diff) | |
download | bcm5719-llvm-3a91e947344b6c8d757707efbe7bf6703597cb9b.tar.gz bcm5719-llvm-3a91e947344b6c8d757707efbe7bf6703597cb9b.zip |
[LAA] Remove unused pointer partition argument from print(), NFC
This is now handled in the client. No need for LAA to provide this
variant.
llvm-svn: 244349
Diffstat (limited to 'llvm/lib/Analysis/LoopAccessAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopAccessAnalysis.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/LoopAccessAnalysis.cpp b/llvm/lib/Analysis/LoopAccessAnalysis.cpp index 8c4ae93a64f..c41ecdad9db 100644 --- a/llvm/lib/Analysis/LoopAccessAnalysis.cpp +++ b/llvm/lib/Analysis/LoopAccessAnalysis.cpp @@ -386,12 +386,10 @@ void RuntimePointerChecking::printChecks( } } -void RuntimePointerChecking::print( - raw_ostream &OS, unsigned Depth, - const SmallVectorImpl<int> *PtrPartition) const { +void RuntimePointerChecking::print(raw_ostream &OS, unsigned Depth) const { OS.indent(Depth) << "Run-time memory checks:\n"; - printChecks(OS, generateChecks(PtrPartition), Depth); + printChecks(OS, generateChecks(), Depth); OS.indent(Depth) << "Grouped accesses:\n"; for (unsigned I = 0; I < CheckingGroups.size(); ++I) { |