summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/arm_rtti1.C
blob: 74f00033d9aa0805e3d8247907b862a19d6fcfb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do compile { target arm_eabi } }
// { dg-options "-O2" } 
// Check that, even when optimizing, we emit an out-of-line call to
// the type-info comparison function.
// { dg-final { scan-assembler _ZNKSt9type_infoeqERKS_ } }

#include <typeinfo>

extern const std::type_info& t1;
extern const std::type_info& t2;

bool f() {
  return t1 == t2;
}