218c218
< Addr physEffAddr;
---
> Addr physEffAddrLow;
219a220,224
> /** The effective physical address
> * of the second request for a split request
> */
> Addr physEffAddrHigh;
>
1059c1064,1072
< physEffAddr = state->getPaddr();
---
> // save Paddr for a single req
> physEffAddrLow = state->getPaddr();
>
> // case for the request that has been split
> if (state->isSplit) {
> physEffAddrLow = state->sreqLow->getPaddr();
> physEffAddrHigh = state->sreqHigh->getPaddr();
> }
>