Deleted Added
sdiff udiff text old ( 5596:cdc8893c649e ) new ( 5639:67cc7f0427e7 )
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;

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

120{
121 this->fault = this->staticInst->completeAcc(pkt, this, this->traceData);
122
123 return this->fault;
124}
125
126#if FULL_SYSTEM
127template <class Impl>
128void
129BaseO3DynInst<Impl>::trap(Fault fault)
130{
131 this->cpu->trap(fault, this->threadNumber);
132}
133
134template <class Impl>
135bool

--- 24 unchanged lines hidden ---