mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
Add std prefixes to fix the build with xlc.
Patch by Kai <kai@redstar.de>. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177574 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -271,7 +271,7 @@ class BlockFrequencyImpl {
|
||||
|
||||
BlockT *EntryBlock = fn->begin();
|
||||
|
||||
copy(po_begin(EntryBlock), po_end(EntryBlock), back_inserter(POT));
|
||||
std::copy(po_begin(EntryBlock), po_end(EntryBlock), std::back_inserter(POT));
|
||||
|
||||
unsigned RPOidx = 0;
|
||||
for (rpot_iterator I = rpot_begin(), E = rpot_end(); I != E; ++I) {
|
||||
|
Reference in New Issue
Block a user