blob: 7e5dbdd85adeb3a0030b27202c9c775cd8c770ae [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
Douglas Gregor57fdc8a2010-04-26 22:37:10 +00002namespace std {
3 class type_info;
4}
5
6struct X { };
7
8void f() {
Anders Carlssonf502d932011-01-24 00:46:19 +00009 // CHECK: @_ZTS1X = linkonce_odr constant
Stephen Hines651f13c2014-04-23 16:59:28 -070010 // CHECK: @_ZTI1X = linkonce_odr constant
Douglas Gregor57fdc8a2010-04-26 22:37:10 +000011 (void)typeid(X&);
12}