Deleted Added
sdiff udiff text old ( 6748:dc2adb7ffff5 ) new ( 7093:9832d4b070fc )
full compact
1/* Copyright (c) 2007-2008 The Florida State University
2 * All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in the

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

119 bitMask = bitMask | mask(19, 16);
120 if (bits(byteMask, 1))
121 bitMask = bitMask | mask(15, 8);
122 if (bits(byteMask, 0))
123 bitMask = bitMask | mask(7, 0);
124
125 return ((spsr & ~bitMask) | (val & bitMask));
126 }
127};
128}
129
130#endif //__ARCH_ARM_INSTS_STATICINST_HH__