Deleted Added
sdiff udiff text old ( 6691:cd68b6ecd68d ) new ( 7506:e76cc0ca16cc )
full compact
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * Copyright (c) 2009 The University of Edinburgh
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

96
97template <class XC>
98Fault
99checkFpEnableFault(XC *xc)
100{
101 return NoFault;
102}
103
104static inline void
105copyRegs(ThreadContext *src, ThreadContext *dest)
106{
107 panic("Copy Regs Not Implemented Yet\n");
108}
109
110static inline void
111copyMiscRegs(ThreadContext *src, ThreadContext *dest)
112{
113 panic("Copy Misc. Regs Not Implemented Yet\n");
114}
115
116} // PowerISA namespace
117
118#endif // __ARCH_POWER_UTILITY_HH__