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).
42 lines
900 B
C++
42 lines
900 B
C++
// RUN: %clang_cc1 -triple=x86_64-none-none -Wpadded-bitfield -verify=expected %s -emit-llvm-only
|
|
|
|
struct S1 {
|
|
unsigned a : 1;
|
|
unsigned long long : 0; // expected-warning {{padding struct 'S1' with 63 bits to align anonymous bit-field}}
|
|
};
|
|
|
|
struct S2 {
|
|
unsigned a : 1;
|
|
unsigned long long b : 64; // expected-warning {{padding struct 'S2' with 63 bits to align 'b'}}
|
|
};
|
|
|
|
struct S3 {
|
|
char a : 1;
|
|
short b : 16; // expected-warning {{padding struct 'S3' with 15 bits to align 'b'}}
|
|
};
|
|
|
|
struct [[gnu::packed]] S4 {
|
|
char a : 1;
|
|
short b : 16;
|
|
};
|
|
|
|
struct S5 {
|
|
unsigned a : 1;
|
|
unsigned long long b : 63;
|
|
};
|
|
|
|
struct S6 {
|
|
unsigned a : 1;
|
|
unsigned long long b;
|
|
};
|
|
|
|
struct S7 {
|
|
int word;
|
|
struct {
|
|
int filler __attribute__ ((aligned (8)));
|
|
};
|
|
};
|
|
|
|
// The warnings are emitted when the layout of the structs is computed, so we have to use them.
|
|
void f(S1, S2, S3, S4, S5, S6, S7){}
|