Deleted Added
sdiff udiff text old ( 2680:246e7104f744 ) new ( 2800:18a615ca6e19 )
full compact
1/*
2 * Copyright (c) 2003-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;

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

76 static FaultStat _count;
77 public:
78 FaultName name() {return _name;}
79 FaultVect vect() {return _vect;}
80 FaultStat & countStat() {return _count;}
81 bool isAlignmentFault() {return true;}
82};
83
84static inline Fault genMachineCheckFault()
85{
86 return new MachineCheckFault;
87}
88
89static inline Fault genAlignmentFault()
90{
91 return new AlignmentFault;

--- 264 unchanged lines hidden ---