view gcc/testsuite/g++.dg/abi/arm_rtti1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { 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;
}