Deleted Added
sdiff udiff text old ( 12726:850e9965525b ) new ( 12749:223c83ed9979 )
full compact
1/*
2 * Copyright (c) 2010-2018 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 285 unchanged lines hidden (view full) ---

294 // attached to this cache
295 assert(tgt_pkt->cmd == MemCmd::HardPFReq);
296
297 if (blk)
298 blk->status |= BlkHWPrefetched;
299
300 // We have filled the block and the prefetcher does not
301 // require responses.
302 delete tgt_pkt;
303 break;
304
305 default:
306 // we should never see FromSnoop Targets as this is a
307 // non-coherent cache
308 panic("Illegal target->source enum %d\n", target.source);
309 }

--- 65 unchanged lines hidden ---