mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 14:58:59 -04:00

iterations of this patch gave explicit template instantiation link-once ODR linkage, which permitted the back end to eliminate unused symbols. Weak ODR linkage still requires the symbols to be generated. llvm-svn: 98441
32 lines
533 B
C++
32 lines
533 B
C++
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK: ; ModuleID
|
|
struct A {
|
|
template<typename T>
|
|
A(T);
|
|
};
|
|
|
|
template<typename T> A::A(T) {}
|
|
|
|
struct B {
|
|
template<typename T>
|
|
B(T);
|
|
};
|
|
|
|
template<typename T> B::B(T) {}
|
|
|
|
// CHECK: define weak_odr void @_ZN1BC1IiEET_(%struct.B* %this, i32)
|
|
// CHECK: define weak_odr void @_ZN1BC2IiEET_(%struct.B* %this, i32)
|
|
template B::B(int);
|
|
|
|
template<typename T>
|
|
struct C {
|
|
void f() {
|
|
int a[] = { 1, 2, 3 };
|
|
}
|
|
};
|
|
|
|
void f(C<int>& c) {
|
|
c.f();
|
|
}
|