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).
61 lines
1.1 KiB
LLVM
61 lines
1.1 KiB
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder < %s
|
|
; PR9857
|
|
|
|
define void @f(i8** nocapture %ptr1) {
|
|
; CHECK: define void @f
|
|
entry:
|
|
br label %here.i
|
|
|
|
here.i:
|
|
store i8* blockaddress(@doit, %here), i8** %ptr1, align 8
|
|
; CHECK: blockaddress(@doit, %here)
|
|
br label %doit.exit
|
|
|
|
doit.exit:
|
|
ret void
|
|
}
|
|
|
|
define void @doit(i8** nocapture %pptr) {
|
|
; CHECK: define void @doit
|
|
entry:
|
|
br label %here
|
|
|
|
here:
|
|
store i8* blockaddress(@doit, %here), i8** %pptr, align 8
|
|
; CHECK: blockaddress(@doit, %here)
|
|
br label %end
|
|
|
|
end:
|
|
ret void
|
|
}
|
|
|
|
; PR13895
|
|
define void @doitagain(i8** nocapture %pptr) {
|
|
; CHECK: define void @doitagain
|
|
entry:
|
|
br label %here
|
|
|
|
here:
|
|
store i8* blockaddress(@doit, %here), i8** %pptr, align 8
|
|
; CHECK: blockaddress(@doit, %here)
|
|
br label %end
|
|
|
|
end:
|
|
ret void
|
|
}
|
|
|
|
; Check a blockaddress taken in two separate functions before the referenced
|
|
; function.
|
|
define i8* @take1() {
|
|
ret i8* blockaddress(@taken, %bb)
|
|
}
|
|
define i8* @take2() {
|
|
ret i8* blockaddress(@taken, %bb)
|
|
}
|
|
define void @taken() {
|
|
unreachable
|
|
bb:
|
|
unreachable
|
|
}
|