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).
120 lines
1.9 KiB
C++
120 lines
1.9 KiB
C++
// RUN: %clang_cc1 %s -I%S -triple=x86_64-apple-darwin10 -emit-llvm -O3 -o - | FileCheck %s
|
|
|
|
// CHECK: %"struct.rdar20621065::B" = type { float, float }
|
|
|
|
struct Empty { };
|
|
|
|
struct A {
|
|
explicit A(unsigned a = 0xffffffff) : a(a) { }
|
|
|
|
unsigned a;
|
|
};
|
|
|
|
struct B : A, Empty {
|
|
B() : A(), Empty() { }
|
|
};
|
|
|
|
struct C : A, Empty {
|
|
C() : A(), Empty() { }
|
|
C(const C& other) : A(0x12345678), Empty(other) { }
|
|
};
|
|
|
|
struct D : A, Empty {
|
|
D& operator=(const D& other) {
|
|
a = 0x87654321;
|
|
Empty::operator=(other);
|
|
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
#define CHECK(x) if (!(x)) return __LINE__
|
|
|
|
// PR7012
|
|
// CHECK-LABEL: define{{.*}} i32 @_Z1fv()
|
|
int f() {
|
|
B b1;
|
|
|
|
// Check that A::a is not overwritten by the Empty default constructor.
|
|
CHECK(b1.a == 0xffffffff);
|
|
|
|
C c1;
|
|
C c2(c1);
|
|
|
|
// Check that A::a has the value set in the C::C copy constructor.
|
|
CHECK(c2.a == 0x12345678);
|
|
|
|
D d1, d2;
|
|
d2 = d1;
|
|
|
|
// Check that A::as has the value set in the D copy assignment operator.
|
|
CHECK(d2.a == 0x87654321);
|
|
|
|
// Success!
|
|
// CHECK: ret i32 0
|
|
return 0;
|
|
}
|
|
|
|
namespace PR8796 {
|
|
struct FreeCell {
|
|
};
|
|
union ThingOrCell {
|
|
FreeCell t;
|
|
FreeCell cell;
|
|
};
|
|
struct Things {
|
|
ThingOrCell things;
|
|
};
|
|
Things x;
|
|
}
|
|
|
|
#ifdef HARNESS
|
|
extern "C" void printf(const char *, ...);
|
|
|
|
int main() {
|
|
int result = f();
|
|
|
|
if (result == 0)
|
|
printf("success!\n");
|
|
else
|
|
printf("test on line %d failed!\n", result);
|
|
|
|
return result;
|
|
}
|
|
#endif
|
|
|
|
namespace rdar20621065 {
|
|
struct A {
|
|
float array[0];
|
|
};
|
|
|
|
struct B : A {
|
|
float left;
|
|
float right;
|
|
};
|
|
|
|
// Type checked at the top of the file.
|
|
B b;
|
|
};
|
|
|
|
// This test used to crash when CGRecordLayout::getNonVirtualBaseLLVMFieldNo was called.
|
|
namespace record_layout {
|
|
struct X0 {
|
|
int x[0];
|
|
};
|
|
|
|
template<typename>
|
|
struct X2 : X0 {
|
|
};
|
|
|
|
template<typename>
|
|
struct X3 : X2<int> {
|
|
X3() : X2<int>() {}
|
|
};
|
|
|
|
|
|
void test0() {
|
|
X3<int>();
|
|
}
|
|
}
|