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).
45 lines
1.9 KiB
C
45 lines
1.9 KiB
C
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fsyntax-only -verify %s -fms-extensions
|
|
// RUN: %clang_cc1 -triple i386-unknown-unknown -fsyntax-only -verify %s -fms-extensions
|
|
|
|
void f(void) {
|
|
(void)_byteswap_ushort(42); // expected-error{{call to undeclared library function '_byteswap_ushort'}} \
|
|
// expected-note{{include the header <stdlib.h> or explicitly provide a declaration for '_byteswap_ushort'}}
|
|
(void)_byteswap_uint64(42LL); // expected-error{{call to undeclared library function '_byteswap_uint64'}} \
|
|
// expected-note{{include the header <stdlib.h> or explicitly provide a declaration for '_byteswap_uint64'}}
|
|
}
|
|
|
|
void _byteswap_ulong(void); // expected-warning{{incompatible redeclaration of library function '_byteswap_ulong'}} \
|
|
// expected-note{{'_byteswap_ulong' is a builtin}}
|
|
|
|
unsigned short _byteswap_ushort(unsigned short);
|
|
unsigned long long _byteswap_uint64(unsigned long long);
|
|
|
|
void g(void) {
|
|
(void)_byteswap_ushort(42);
|
|
(void)_byteswap_uint64(42LL);
|
|
}
|
|
|
|
#if defined(__x86_64__)
|
|
void h(void) {
|
|
(void)__mulh(21, 2); // expected-error{{call to undeclared library function '__mulh'}} \
|
|
// expected-note{{include the header <intrin.h> or explicitly provide a declaration for '__mulh'}}
|
|
(void)__umulh(21, 2); // expected-error{{call to undeclared library function '__umulh'}} \
|
|
// expected-note{{include the header <intrin.h> or explicitly provide a declaration for '__umulh'}}
|
|
}
|
|
|
|
long long __mulh(long long, long long);
|
|
unsigned long long __umulh(unsigned long long, unsigned long long);
|
|
|
|
void i(void) {
|
|
(void)__mulh(21, 2);
|
|
(void)__umulh(21, 2);
|
|
}
|
|
#endif
|
|
|
|
#if defined(i386)
|
|
void h(void) {
|
|
(void)__mulh(21LL, 2LL); // expected-error{{call to undeclared function '__mulh'; ISO C99 and later do not support implicit function declarations}}
|
|
(void)__umulh(21ULL, 2ULL); // expected-error{{call to undeclared function '__umulh'; ISO C99 and later do not support implicit function declarations}}
|
|
}
|
|
#endif
|