faults.hh (8569:498d3aacd292) faults.hh (8591:8f23aeaf6a91)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2009 The University of Edinburgh
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

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

80{
81 public:
82 AlignmentFault()
83 : PowerFault("Alignment")
84 {
85 }
86};
87
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2009 The University of Edinburgh
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

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

80{
81 public:
82 AlignmentFault()
83 : PowerFault("Alignment")
84 {
85 }
86};
87
88
89static inline Fault
90genMachineCheckFault()
91{
92 return new MachineCheckFault();
93}
94
95} // namespace PowerISA
96
97#endif // __ARCH_POWER_FAULTS_HH__
88} // namespace PowerISA
89
90#endif // __ARCH_POWER_FAULTS_HH__