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).
40 lines
1.0 KiB
LLVM
40 lines
1.0 KiB
LLVM
; Verify that forward declarations from call instructions work even with non-zero AS
|
|
; RUN: llvm-as %s -o - | llvm-dis - | FileCheck %s
|
|
|
|
define void @call_named() {
|
|
entry:
|
|
%0 = tail call addrspace(40) i32 @named(i16* null)
|
|
; CHECK: %0 = tail call addrspace(40) i32 @named(ptr null)
|
|
ret void
|
|
}
|
|
|
|
define void @call_numbered() {
|
|
entry:
|
|
%0 = tail call addrspace(40) i32 @0(i16* null)
|
|
; CHECK: %0 = tail call addrspace(40) i32 @0(ptr null)
|
|
ret void
|
|
}
|
|
|
|
|
|
define i32 @invoked() personality i8* null {
|
|
entry:
|
|
%0 = invoke addrspace(40) i32 @foo() to label %l1 unwind label %lpad
|
|
; CHECK: invoke addrspace(40) i32 @foo()
|
|
l1:
|
|
br label %return
|
|
lpad:
|
|
%1 = landingpad { i8*, i32 }
|
|
catch i8* null
|
|
catch i8* null
|
|
ret i32 0
|
|
return:
|
|
ret i32 0
|
|
}
|
|
|
|
declare i32 @foo() addrspace(40)
|
|
; CHECK: declare i32 @foo() addrspace(40)
|
|
declare i32 @named(i16* captures(none)) addrspace(40)
|
|
; CHECK: declare i32 @named(ptr captures(none)) addrspace(40)
|
|
declare i32 @0(i16*) addrspace(40)
|
|
; CHECK: declare i32 @0(ptr) addrspace(40)
|