Deleted Added
sdiff udiff text old ( 4909:f3b84a9b5c5a ) new ( 4985:9f577f468009 )
full compact
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

923#endif
924}
925
926template <class Impl>
927void
928LSQUnit<Impl>::recvRetry()
929{
930 if (isStoreBlocked) {
931 assert(retryPkt != NULL);
932
933 if (dcachePort->sendTiming(retryPkt)) {
934 storePostSend(retryPkt);
935 retryPkt = NULL;
936 isStoreBlocked = false;
937 lsq->setRetryTid(-1);
938 } else {

--- 73 unchanged lines hidden ---