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).
48 lines
1.4 KiB
Objective-C
48 lines
1.4 KiB
Objective-C
// RUN: %clang_cc1 -fblocks -fobjc-arc -fobjc-runtime-has-weak -triple x86_64-apple-darwin -emit-llvm %s -o - | FileCheck %s
|
|
|
|
@class NSString;
|
|
|
|
void Test12759433(void) {
|
|
__block __unsafe_unretained NSString *uuByref = (__bridge NSString *)(void*)0x102030405060708;
|
|
void (^block)(void) = ^{ uuByref = 0; };
|
|
block();
|
|
}
|
|
// CHECK: %struct.__block_byref_uuByref = type { ptr, ptr, i32, i32, ptr }
|
|
int main(void) {
|
|
__block __weak id wid;
|
|
__block long XXX;
|
|
__block id ID;
|
|
__block struct S {
|
|
int iS;
|
|
double iD;
|
|
void *pv;
|
|
__unsafe_unretained id unsunr;
|
|
} import;
|
|
void (^c)(void) = ^{
|
|
// Inline flag for BYREF variable layout (1107296256): BLOCK_BYREF_HAS_COPY_DISPOSE BLOCK_BYREF_LAYOUT_WEAK
|
|
// CHECK: store i32 1107296256, ptr [[T0:%.*]]
|
|
wid = 0;
|
|
|
|
// Inline flag for BYREF variable layout (536870912): BLOCK_BYREF_LAYOUT_NON_OBJECT
|
|
// CHECK: store i32 536870912, ptr [[T1:%.*]]
|
|
XXX = 12345;
|
|
|
|
// Inline flag for BYREF variable layout (838860800): BLOCK_BYREF_HAS_COPY_DISPOSE BLOCK_BYREF_LAYOUT_STRONG
|
|
// CHECK: store i32 838860800, ptr [[T2:%.*]]
|
|
ID = 0;
|
|
|
|
// Inline flag for BYREF variable layout (268435456): BLOCK_BYREF_LAYOUT_EXTENDED
|
|
// BYREF variable layout: BL_NON_OBJECT_WORD:3, BL_UNRETAINED:1, BL_OPERATOR:0
|
|
// CHECK: store i32 268435456, ptr [[T3:%.*]]
|
|
import.iD = 3.14;
|
|
|
|
};
|
|
c();
|
|
}
|
|
|
|
typedef char mds_path_t[1024];
|
|
void directVolumePerfWaitForStoreState(void)
|
|
{
|
|
__block mds_path_t path;
|
|
}
|