Deleted Added
sdiff udiff text old ( 7720:65d338a8dba4 ) new ( 7758:28a677d7cb51 )
full compact
1/*
2 * Copyright (c) 2004-2006 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;

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

108
109 return this->fault;
110}
111
112template <class Impl>
113Fault
114BaseO3DynInst<Impl>::completeAcc(PacketPtr pkt)
115{
116 this->fault = this->staticInst->completeAcc(pkt, this, this->traceData);
117
118 return this->fault;
119}
120
121#if FULL_SYSTEM
122template <class Impl>
123Fault
124BaseO3DynInst<Impl>::hwrei()
125{

--- 57 unchanged lines hidden ---