f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
33 lines
437 B
C++
33 lines
437 B
C++
// RUN: %clang_cc1 %s -emit-llvm -o - -chain-include %s -chain-include %s | FileCheck %s
|
|
// CHECK: define linkonce_odr %{{[^ ]+}} @_ZN1AI1BE3getEv
|
|
#if !defined(PASS1)
|
|
#define PASS1
|
|
|
|
template <typename Derived>
|
|
struct A {
|
|
Derived* get() { return 0; }
|
|
};
|
|
|
|
struct B : A<B> {
|
|
};
|
|
|
|
#elif !defined(PASS2)
|
|
#define PASS2
|
|
|
|
struct C : B {
|
|
};
|
|
|
|
struct D : C {
|
|
void run() {
|
|
(void)get();
|
|
}
|
|
};
|
|
|
|
#else
|
|
|
|
int main() {
|
|
D d;
|
|
d.run();
|
|
}
|
|
|
|
#endif
|