2 // { dg-do compile { target c++11 } }
7 constexpr CAddress(unsigned long begin) : m_Begin(begin) {}
8 constexpr CAddress(const CAddress &other) : m_Begin(other.m_Begin) {}
11 unsigned long m_Begin;
14 extern "C" char _lnkDDRRAM;
15 /* internal compiler error on gcc 4.6.3 */
16 const CAddress s_Memmap[2]
18 {(unsigned long)&_lnkDDRRAM}, /* segmentation fault */
24 constexpr CNested(const CAddress primary)
25 : m_PrimaryBlock(primary) {}
28 CAddress m_PrimaryBlock;
31 /* internal compiler error on gcc 4.7.2 */
32 const CNested s_taskDescriptions[2]