diff options
Diffstat (limited to 'llvm/lib/Analysis/LoopAccessAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopAccessAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LoopAccessAnalysis.cpp b/llvm/lib/Analysis/LoopAccessAnalysis.cpp index 4b8e8afdabb..3c6c2ab9c99 100644 --- a/llvm/lib/Analysis/LoopAccessAnalysis.cpp +++ b/llvm/lib/Analysis/LoopAccessAnalysis.cpp @@ -420,7 +420,7 @@ void RuntimePointerChecking::groupChecks( // We've computed the grouped checks for this partition. // Save the results and continue with the next one. - std::copy(Groups.begin(), Groups.end(), std::back_inserter(CheckingGroups)); + llvm::copy(Groups, std::back_inserter(CheckingGroups)); } } |