Files
RedBear-OS/local/recipes/dev/libclc/source/llvm/test/TableGen/defset.td
T
vasilito cb424d7448 build: static patch-sanity linter (shift-left the malformed-patch class)
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).
2026-08-01 05:13:02 +03:00

63 lines
1.0 KiB
TableGen

// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak
// CHECK: --- Defs ---
// CHECK: def Sum {
// CHECK: int x = 712;
// CHECK: }
// CHECK: def yyy_A0
// CHECK: def yyy_A1
// CHECK: def yyy_A2
// CHECK: def yyy_B0A0
// CHECK: def yyy_B0A1
// CHECK: def yyy_C0B0A0
// CHECK: def yyy_C0B0A1
// CHECK: def yyy_C0B1A0
// CHECK: def yyy_C0B1A1
// CHECK-NOT: def zzz_A0
// CHECK: def zzz_B0A0
// CHECK: def zzz_B0A1
// CHECK: def zzz_C0B0A0
// CHECK: def zzz_C0B0A1
// CHECK: def zzz_C0B1A0
// CHECK: def zzz_C0B1A1
class A<int a> {
int Num = a;
}
multiclass B<int b> {
def A0 : A<!add(10, b)>;
def A1 : A<!add(20, b)>;
}
multiclass C<int c> {
defm B0 : B<!add(100, c)>;
defm B1 : B<!add(200, c)>;
}
defset list<A> As = {
def A0 : A<1>;
foreach i = 1...2 in {
def A#i : A<!add(i, 1)>;
}
defset list<A> SubAs = {
defm B0 : B<2>;
defm C0 : C<3>;
}
}
def Sum {
int x = !foldl(0, As, a, b, !add(a, b.Num));
}
foreach a = As in {
def yyy_ # !cast<string>(a);
}
foreach a = SubAs in {
def zzz_ # !cast<string>(a);
}