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).
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
// RUN: %clang_cc1 -debug-info-kind=limited -gno-column-info -triple=x86_64-pc-linux -emit-llvm %s -o - | FileCheck %s
|
|
|
|
// The important thing is that the compare and the conditional branch have
|
|
// locs with the same scope (the lexical block for the 'if'). By turning off
|
|
// column info, they end up with the same !dbg record, which halves the number
|
|
// of checks to verify the scope.
|
|
|
|
int c = 2;
|
|
|
|
int f() {
|
|
#line 100
|
|
if (int a = 5; a > c)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
// CHECK-LABEL: define {{.*}} @_Z1fv()
|
|
// CHECK: = icmp {{.*}} !dbg [[F_CMP:![0-9]+]]
|
|
// CHECK-NEXT: br i1 {{.*}} !dbg [[F_CMP]]
|
|
|
|
int g() {
|
|
#line 200
|
|
if (int a = f())
|
|
return 2;
|
|
return 3;
|
|
}
|
|
// CHECK-LABEL: define {{.*}} @_Z1gv()
|
|
// CHECK: = icmp {{.*}} !dbg [[G_CMP:![0-9]+]]
|
|
// CHECK-NEXT: br i1 {{.*}} !dbg [[G_CMP]]
|
|
|
|
int h() {
|
|
#line 300
|
|
if (c > 3)
|
|
return 4;
|
|
return 5;
|
|
}
|
|
// CHECK-LABEL: define {{.*}} @_Z1hv()
|
|
// CHECK: = icmp {{.*}} !dbg [[H_CMP:![0-9]+]]
|
|
// CHECK-NEXT: br i1 {{.*}} !dbg [[H_CMP]]
|
|
|
|
// CHECK-DAG: [[F_CMP]] = !DILocation(line: 100, scope: [[F_SCOPE:![0-9]+]]
|
|
// CHECK-DAG: [[F_SCOPE]] = distinct !DILexicalBlock({{.*}} line: 100)
|
|
// CHECK-DAG: [[G_CMP]] = !DILocation(line: 200, scope: [[G_SCOPE:![0-9]+]]
|
|
// CHECK-DAG: [[G_SCOPE]] = distinct !DILexicalBlock({{.*}} line: 200)
|
|
// CHECK-DAG: [[H_CMP]] = !DILocation(line: 300, scope: [[H_SCOPE:![0-9]+]]
|
|
// CHECK-DAG: [[H_SCOPE]] = distinct !DILexicalBlock({{.*}} line: 300)
|