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).
63 lines
1.1 KiB
LLVM
63 lines
1.1 KiB
LLVM
; RUN: llvm-as < %s | llvm-dis > %t1.ll
|
|
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
|
|
; RUN: diff %t1.ll %t2.ll
|
|
|
|
define fastcc void @foo() {
|
|
ret void
|
|
}
|
|
|
|
define coldcc void @bar() {
|
|
call fastcc void @foo( )
|
|
ret void
|
|
}
|
|
|
|
define void @structret(ptr sret({ i8 }) %P) {
|
|
call void @structret( ptr sret({ i8 }) %P )
|
|
ret void
|
|
}
|
|
|
|
define void @foo2() {
|
|
ret void
|
|
}
|
|
|
|
define coldcc void @bar2() {
|
|
call fastcc void @foo( )
|
|
ret void
|
|
}
|
|
|
|
define cc42 void @bar3() personality ptr @__gxx_personality_v0 {
|
|
invoke fastcc void @foo( )
|
|
to label %Ok unwind label %U
|
|
|
|
Ok:
|
|
ret void
|
|
|
|
U:
|
|
%exn = landingpad {ptr, i32}
|
|
cleanup
|
|
resume { ptr, i32 } %exn
|
|
}
|
|
|
|
define void @bar4() personality ptr @__gxx_personality_v0 {
|
|
call cc42 void @bar( )
|
|
invoke cc42 void @bar3( )
|
|
to label %Ok unwind label %U
|
|
|
|
Ok:
|
|
ret void
|
|
|
|
U:
|
|
%exn = landingpad {ptr, i32}
|
|
cleanup
|
|
resume { ptr, i32 } %exn
|
|
}
|
|
|
|
declare ghccc void @ghc_callee()
|
|
|
|
define void @ghc_caller() {
|
|
call ghccc void @ghc_callee()
|
|
ret void
|
|
}
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|