Deleted Added
sdiff udiff text old ( 7045:e21fe6a62b1c ) new ( 7712:7733c562e5e3 )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 MIPS Technologies, Inc.
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright

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

415}};
416
417
418def template StoreCompleteAcc {{
419 Fault %(class_name)s::completeAcc(Packet *pkt,
420 %(CPU_exec_context)s *xc,
421 Trace::InstRecord *traceData) const
422 {
423 return NoFault;
424 }
425}};
426
427def template StoreCondCompleteAcc {{
428 Fault %(class_name)s::completeAcc(Packet *pkt,
429 %(CPU_exec_context)s *xc,
430 Trace::InstRecord *traceData) const
431 {
432 Fault fault = NoFault;
433
434 %(fp_enable_check)s;

--- 162 unchanged lines hidden ---