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).
44 lines
1.0 KiB
LLVM
44 lines
1.0 KiB
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s
|
|
|
|
; CHECK: @a = global [4 x ptr] [ptr no_cfi @f1, ptr @f1, ptr @f2, ptr no_cfi @f2]
|
|
@a = global [4 x void ()*] [void ()* no_cfi @f1, void ()* @f1, void ()* @f2, void ()* no_cfi @f2]
|
|
; CHECK: @b = constant ptr no_cfi @f3
|
|
@b = constant void ()* no_cfi @f3
|
|
; CHECK: @c = constant ptr @f3
|
|
@c = constant void ()* @f3
|
|
|
|
; CHECK: declare void @f1()
|
|
declare void @f1()
|
|
|
|
; CHECK: declare void @f2()
|
|
declare void @f2()
|
|
|
|
; CHECK: define void @f3()
|
|
define void @f3() {
|
|
; CHECK: call void no_cfi @f4()
|
|
call void no_cfi @f4()
|
|
; CHECK: call void @f4()
|
|
call void @f4()
|
|
; CHECK: call void no_cfi @f5()
|
|
call void no_cfi @f5()
|
|
; CHECK: call void @f5()
|
|
call void @f5()
|
|
ret void
|
|
}
|
|
|
|
; CHECK: declare void @f4()
|
|
declare void @f4()
|
|
|
|
; CHECK: declare void @f5()
|
|
declare void @f5()
|
|
|
|
define void @g() {
|
|
%n = alloca void ()*, align 8
|
|
; CHECK: store ptr no_cfi @f5, ptr %n, align 8
|
|
store void ()* no_cfi @f5, void ()** %n, align 8
|
|
%1 = load void ()*, void ()** %n
|
|
call void %1()
|
|
ret void
|
|
}
|