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).
19 lines
338 B
LLVM
19 lines
338 B
LLVM
; RUN: llvm-as < %s | llvm-dis | not grep bitcast
|
|
|
|
define i32 @test1() {
|
|
ret i32 bitcast(float 0x400D9999A0000000 to i32)
|
|
}
|
|
|
|
define float @test2() {
|
|
ret float bitcast(i32 17 to float)
|
|
}
|
|
|
|
define i64 @test3() {
|
|
ret i64 bitcast (double 0x400921FB4D12D84A to i64)
|
|
}
|
|
|
|
define double @test4() {
|
|
ret double bitcast (i64 42 to double)
|
|
}
|
|
|