cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
91 lines
2.5 KiB
C++
91 lines
2.5 KiB
C++
// RUN: %clang_cc1 %s -triple=i686-pc-win32 -fms-extensions -emit-llvm -o - | FileCheck %s
|
|
// RUN: %clang_cc1 %s -triple=x86_64-pc-win32 -fms-extensions -emit-llvm -o - | FileCheck %s
|
|
// RUN: %clang_cc1 %s -triple=i686-pc-windows-msvc -fms-extensions -emit-llvm -o - | FileCheck %s
|
|
// RUN: %clang_cc1 %s -triple=x86_64-pc-windows-msvc -fms-extensions -emit-llvm -o - | FileCheck %s
|
|
|
|
struct S {
|
|
S();
|
|
~S();
|
|
};
|
|
|
|
template <typename T> struct __declspec(dllexport) ExportedTemplate {
|
|
static S s;
|
|
};
|
|
template <typename T> S ExportedTemplate<T>::s;
|
|
void useExportedTemplate(ExportedTemplate<int> x) {
|
|
(void)x.s;
|
|
}
|
|
int f();
|
|
namespace selectany_init {
|
|
// MS don't put selectany static var in the linker directive, init routine
|
|
// f() is not getting called if x is not referenced.
|
|
int __declspec(selectany) x = f();
|
|
inline int __declspec(selectany) x1 = f();
|
|
}
|
|
|
|
namespace explicit_template_instantiation {
|
|
template <typename T> struct A { static int x; };
|
|
template <typename T> int A<T>::x = f();
|
|
template struct A<int>;
|
|
}
|
|
|
|
namespace implicit_template_instantiation {
|
|
template <typename T> struct A { static int x; };
|
|
template <typename T> int A<T>::x = f();
|
|
int g() { return A<int>::x; }
|
|
}
|
|
|
|
|
|
template <class T>
|
|
struct X_ {
|
|
static T ioo;
|
|
static T init();
|
|
};
|
|
template <class T> T X_<T>::ioo = X_<T>::init();
|
|
template struct X_<int>;
|
|
|
|
template <class T>
|
|
struct X {
|
|
static T ioo;
|
|
static T init();
|
|
};
|
|
template <> int X<int>::ioo = X<int>::init();
|
|
template struct X<int>;
|
|
class a {
|
|
public:
|
|
a();
|
|
};
|
|
// For the static var inside unnamed namespace, the object is local to TU.
|
|
// No need to put static var in the linker directive.
|
|
// The static init routine is called before main.
|
|
namespace {
|
|
template <int> class aj {
|
|
public:
|
|
static a al;
|
|
};
|
|
template <int am> a aj<am>::al;
|
|
class b : aj<3> {
|
|
void c();
|
|
};
|
|
void b::c() { al; }
|
|
}
|
|
|
|
// C++17, inline static data member also need to use
|
|
struct A
|
|
{
|
|
A();
|
|
~A();
|
|
};
|
|
|
|
struct S1
|
|
{
|
|
inline static A aoo; // C++17 inline variable, thus also a definition
|
|
};
|
|
|
|
int foo();
|
|
inline int zoo = foo();
|
|
inline static int boo = foo();
|
|
inline __declspec(dllexport) A exported_inline{};
|
|
|
|
// CHECK: @llvm.used = appending global [10 x ptr] [ptr @"?x@selectany_init@@3HA", ptr @"?x1@selectany_init@@3HA", ptr @"?x@?$A@H@explicit_template_instantiation@@2HA", ptr @"?ioo@?$X_@H@@2HA", ptr @"?ioo@?$X@H@@2HA", ptr @"?aoo@S1@@2UA@@A", ptr @"?zoo@@3HA", ptr @"?exported_inline@@3UA@@A", ptr @"?s@?$ExportedTemplate@H@@2US@@A", ptr @"?x@?$A@H@implicit_template_instantiation@@2HA"], section "llvm.metadata"
|