aboutsummaryrefslogblamecommitdiff
path: root/test/SemaCXX/typeid-ref.cpp
blob: 7e5dbdd85adeb3a0030b27202c9c775cd8c770ae (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                






                  
                                           
                                            

                   
// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
namespace std {
  class type_info;
}

struct X { };

void f() {
  // CHECK: @_ZTS1X = linkonce_odr constant
  // CHECK: @_ZTI1X = linkonce_odr constant 
  (void)typeid(X&);
}