blob: 121cb8eedf2fbd0d9dde8cc3adc88e1e3025d6fd (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
template<class T> void f(T) { /* ... */ }
template<class T> inline void g(T) { /* ... */ }
// CHECK: define void @_Z1gIiEvT_
template<> void g<>(int) { /* ... */ }
template<class T>
struct X {
void f() { }
void g();
void h();
};
template<class T>
void X<T>::g() {
}
template<class T>
inline void X<T>::h() {
}
// CHECK: define void @_ZN1XIiE1fEv
template<> void X<int>::f() { }
// CHECK: define void @_ZN1XIiE1hEv
template<> void X<int>::h() { }
// CHECK: define linkonce_odr void @_Z1fIiEvT_
template<> inline void f<>(int) { /* ... */ }
// CHECK: define linkonce_odr void @_ZN1XIiE1gEv
template<> inline void X<int>::g() { }
void test(X<int> xi) {
f(17);
g(17);
xi.f();
xi.g();
xi.h();
}
|