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).
126 lines
2.4 KiB
C++
126 lines
2.4 KiB
C++
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin9 | FileCheck %s
|
|
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin9 -fclang-abi-compat=19 | FileCheck %s --check-prefix=CHECK-CLANG-19
|
|
|
|
//CHECK: @_ZTCN16MangleCtorVTable4InstE0_NS_1A4ImplINS1_4WrapEEE
|
|
//CHECK-CLANG-19: @_ZTCN16MangleCtorVTable4InstE0_NS_1A4ImplINS0_4WrapEEE
|
|
|
|
struct X {};
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z1f1XS_(
|
|
void f(X, X) { }
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z1fR1XS0_(
|
|
void f(X&, X&) { }
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z1fRK1XS1_(
|
|
void f(const X&, const X&) { }
|
|
|
|
typedef void T();
|
|
struct S {};
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z1fPFvvEM1SFvvE(
|
|
void f(T*, T (S::*)) {}
|
|
|
|
namespace A {
|
|
struct A { };
|
|
struct B { };
|
|
};
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z1fN1A1AENS_1BE(
|
|
void f(A::A a, A::B b) { }
|
|
|
|
struct C {
|
|
struct D { };
|
|
};
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z1fN1C1DERS_PS_S1_(
|
|
void f(C::D, C&, C*, C&) { }
|
|
|
|
template<typename T>
|
|
struct V {
|
|
typedef int U;
|
|
};
|
|
|
|
template <typename T> void f1(typename V<T>::U, V<T>) { }
|
|
|
|
// CHECK: @_Z2f1IiEvN1VIT_E1UES2_
|
|
template void f1<int>(int, V<int>);
|
|
|
|
template <typename T> void f2(V<T>, typename V<T>::U) { }
|
|
|
|
// CHECK: @_Z2f2IiEv1VIT_ENS2_1UE
|
|
template void f2<int>(V<int>, int);
|
|
|
|
namespace NS {
|
|
template <typename T> struct S1 {};
|
|
template<typename T> void ft3(S1<T>, S1<char>) { }
|
|
|
|
// CHECK: @_ZN2NS3ft3IiEEvNS_2S1IT_EENS1_IcEE
|
|
template void ft3<int>(S1<int>, S1<char>);
|
|
}
|
|
|
|
// PR5196
|
|
// CHECK: @_Z1fPKcS0_
|
|
void f(const char*, const char*) {}
|
|
|
|
namespace NS {
|
|
class C;
|
|
}
|
|
|
|
namespace NS {
|
|
// CHECK: @_ZN2NS1fERNS_1CE
|
|
void f(C&) { }
|
|
}
|
|
|
|
namespace Test1 {
|
|
|
|
struct A { };
|
|
struct B { };
|
|
|
|
// CHECK: @_ZN5Test11fEMNS_1BEFvvENS_1AES3_
|
|
void f(void (B::*)(), A, A) { }
|
|
|
|
// CHECK: @_ZN5Test11fEMNS_1BEFvvENS_1AES3_MS0_FvS3_EMS3_FvvE
|
|
void f(void (B::*)(), A, A, void (B::*)(A), void (A::*)()) { }
|
|
|
|
}
|
|
|
|
namespace ManglePrefix {
|
|
template <typename>
|
|
struct X {
|
|
template <typename>
|
|
struct Y {
|
|
typedef int type;
|
|
typedef int type2;
|
|
};
|
|
};
|
|
template <typename T>
|
|
typename X<T>::template Y<T>::type f(typename X<T>::template Y<T>::type2) { return 0; }
|
|
|
|
// CHECK: @_ZN12ManglePrefix1fIiEENS_1XIT_E1YIS2_E4typeENS5_5type2E
|
|
template int f<int>(int);
|
|
}
|
|
|
|
namespace MangleCtorVTable {
|
|
namespace A {
|
|
|
|
class VBase {
|
|
public:
|
|
virtual ~VBase() {};
|
|
};
|
|
|
|
struct Wrap {};
|
|
|
|
template <typename T>
|
|
class Impl : public virtual VBase {
|
|
public:
|
|
};
|
|
|
|
} // namespace A
|
|
|
|
struct Inst : public A::Impl<A::Wrap> {};
|
|
|
|
void Test() { Inst a; }
|
|
|
|
}
|