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).
69 lines
2.2 KiB
C
69 lines
2.2 KiB
C
// RUN: %clang_cc1 -triple i386-pc-linux -Wno-strict-prototypes -emit-llvm < %s | FileCheck %s
|
|
// RUN: %clang_cc1 -triple i386-pc-linux -Wno-strict-prototypes -emit-llvm -mrtd < %s | FileCheck %s
|
|
// RUN: %clang_cc1 -triple i386-pc-linux -Wno-strict-prototypes -emit-llvm -fms-compatibility < %s | FileCheck %s
|
|
|
|
void __fastcall f1(void);
|
|
void __stdcall f2(void);
|
|
void __thiscall f3(void);
|
|
void __fastcall f4(void) {
|
|
// CHECK-LABEL: define{{.*}} x86_fastcallcc void @f4()
|
|
f1();
|
|
// CHECK: call x86_fastcallcc void @f1()
|
|
}
|
|
void __stdcall f5(void) {
|
|
// CHECK-LABEL: define{{.*}} x86_stdcallcc void @f5()
|
|
f2();
|
|
// CHECK: call x86_stdcallcc void @f2()
|
|
}
|
|
void __thiscall f6(void) {
|
|
// CHECK-LABEL: define{{.*}} x86_thiscallcc void @f6()
|
|
f3();
|
|
// CHECK: call x86_thiscallcc void @f3()
|
|
}
|
|
void __vectorcall f61(void) {
|
|
// CHECK-LABEL: define{{.*}} x86_vectorcallcc void @f61()
|
|
f3();
|
|
// CHECK: call x86_thiscallcc void @f3()
|
|
}
|
|
|
|
// PR5280
|
|
void (__fastcall *pf1)(void) = f1;
|
|
void (__stdcall *pf2)(void) = f2;
|
|
void (__thiscall *pf3)(void) = f3;
|
|
void (__fastcall *pf4)(void) = f4;
|
|
void (__stdcall *pf5)(void) = f5;
|
|
void (__thiscall *pf6)(void) = f6;
|
|
void (__vectorcall *pf7)(void) = f61;
|
|
|
|
int main(void) {
|
|
f4(); f5(); f6(); f61();
|
|
// CHECK: call x86_fastcallcc void @f4()
|
|
// CHECK: call x86_stdcallcc void @f5()
|
|
// CHECK: call x86_thiscallcc void @f6()
|
|
// CHECK: call x86_vectorcallcc void @f61()
|
|
pf1(); pf2(); pf3(); pf4(); pf5(); pf6(); pf7();
|
|
// CHECK: call x86_fastcallcc void %{{.*}}()
|
|
// CHECK: call x86_stdcallcc void %{{.*}}()
|
|
// CHECK: call x86_thiscallcc void %{{.*}}()
|
|
// CHECK: call x86_fastcallcc void %{{.*}}()
|
|
// CHECK: call x86_stdcallcc void %{{.*}}()
|
|
// CHECK: call x86_thiscallcc void %{{.*}}()
|
|
// CHECK: call x86_vectorcallcc void %{{.*}}()
|
|
return 0;
|
|
}
|
|
|
|
// PR7117
|
|
void __stdcall f7(foo) int foo; {}
|
|
void f8(void) {
|
|
f7(0);
|
|
// CHECK: call x86_stdcallcc void @f7(i32 noundef 0)
|
|
}
|
|
|
|
// PR12535
|
|
void __fastcall f9(int x, int y) {};
|
|
// CHECK: define{{.*}} x86_fastcallcc void @f9({{.*}})
|
|
void __fastcall f10(int x, ...) {};
|
|
// CHECK: define{{.*}} void @f10({{.*}})
|
|
void __stdcall f11(int x, ...) {};
|
|
// CHECK: define{{.*}} void @f11({{.*}})
|