2015-08-20 04:49:38 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -std=c++11 -emit-pch -o %t.1 %s
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -error-on-deserialized-decl S1_keyfunc -error-on-deserialized-decl S3 -error-on-deserialized-decl DND -std=c++11 -include-pch %t.1 -emit-pch -o %t.2 %s
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -error-on-deserialized-decl S1_method -error-on-deserialized-decl S3 -error-on-deserialized-decl DND -std=c++11 -include-pch %t.2 -emit-llvm-only %s
|
2010-10-15 04:14:34 +08:00
|
|
|
|
2015-02-25 10:32:00 +08:00
|
|
|
// FIXME: Why does this require an x86 target?
|
|
|
|
// REQUIRES: x86-registered-target
|
|
|
|
|
2013-08-30 07:59:27 +08:00
|
|
|
#ifndef HEADER1
|
|
|
|
#define HEADER1
|
2010-10-15 04:14:34 +08:00
|
|
|
// Header.
|
|
|
|
|
|
|
|
struct S1 {
|
2013-08-30 07:59:27 +08:00
|
|
|
void S1_method();
|
2010-10-15 04:14:38 +08:00
|
|
|
virtual void S1_keyfunc();
|
2010-10-15 04:14:34 +08:00
|
|
|
};
|
|
|
|
|
2013-08-30 12:46:40 +08:00
|
|
|
struct S3 {};
|
|
|
|
|
|
|
|
struct S2 {
|
|
|
|
operator S3();
|
|
|
|
};
|
|
|
|
|
2015-08-20 04:49:38 +08:00
|
|
|
namespace vars {
|
|
|
|
constexpr int f() { return 0; }
|
|
|
|
struct X { constexpr X() {} };
|
|
|
|
namespace v1 { const int DND = 0; }
|
|
|
|
namespace v2 { constexpr int DND = f(); }
|
|
|
|
namespace v3 { static X DND; }
|
|
|
|
namespace v4 { constexpr X DND = {}; }
|
|
|
|
}
|
|
|
|
|
2013-08-30 07:59:27 +08:00
|
|
|
#elif !defined(HEADER2)
|
|
|
|
#define HEADER2
|
|
|
|
|
|
|
|
// Chained PCH.
|
2013-08-30 12:46:40 +08:00
|
|
|
S1 *s1;
|
|
|
|
S2 *s2;
|
2010-10-15 04:14:34 +08:00
|
|
|
|
|
|
|
#else
|
2013-08-30 07:59:27 +08:00
|
|
|
|
|
|
|
// Using the headers.
|
2010-10-15 04:14:34 +08:00
|
|
|
|
2013-08-30 12:46:40 +08:00
|
|
|
void test(S1*, S2*) {
|
2010-10-15 04:14:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|