URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [abi/] [rtti2.C] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }
#include <cxxabi.h>
#include <typeinfo>
int main () {
const std::type_info& ti = typeid (const int (*)[3]);
const abi::__pointer_type_info& pti
= static_cast<const abi::__pointer_type_info&>(ti);
if ((pti.__flags & pti.__const_mask) == 0)
return 1;
}
Go to most recent revision | Compare with Previous | Blame | View Log