system.hh (8706:b1838faf3bcc) system.hh (9050:ed4378739b6e)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

93 virtual Addr fixFuncEventAddr(Addr addr)
94 {
95 // Remove the low bit that thumb symbols have set
96 // but that aren't actually odd aligned
97 if (addr & 0x1)
98 return addr & ~1;
99 return addr;
100 }
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

93 virtual Addr fixFuncEventAddr(Addr addr)
94 {
95 // Remove the low bit that thumb symbols have set
96 // but that aren't actually odd aligned
97 if (addr & 0x1)
98 return addr & ~1;
99 return addr;
100 }
101
102 /** true if this a multiprocessor system */
103 bool multiProc;
101};
102
103#endif
104
104};
105
106#endif
107