Files
RedBear-OS/local/recipes/dev/libclc/source/clang/test/CodeGenObjCXX/property-lvalue-lambda.mm
T
vasilito cb424d7448 build: static patch-sanity linter (shift-left the malformed-patch class)
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).
2026-08-01 05:13:02 +03:00

48 lines
1.5 KiB
Plaintext

// RUN: %clang_cc1 -no-enable-noundef-analysis -fblocks -disable-llvm-passes -triple x86_64-apple-darwin10 -std=c++17 -emit-llvm -o - %s | FileCheck %s
typedef void (^blk_t)();
typedef void (*fnptr_t)();
@interface X
@property blk_t blk;
@property fnptr_t fnptr;
@end
template <class T>
blk_t operator+(blk_t lhs, T) { return lhs; }
template <class T>
fnptr_t operator+(fnptr_t lhs, T) { return lhs; }
// CHECK-LABEL: define{{.*}} void @_Z2t1P1X
void t1(X *x) {
// Check that we call lambda.operator blk_t(), and that we send that result to
// the setter.
// CHECK: [[CALL:%.*]] = call ptr @"_ZZ2t1P1XENK3$_0cvU13block_pointerFvvEEv"
// CHECK: call void{{.*}}@objc_msgSend{{.*}}({{.*}} ptr [[CALL]])
x.blk = [] {};
// CHECK: [[CALL2:%.*]] = call ptr @"_ZZ2t1P1XENK3$_1cvPFvvEEv"
// CHECK: call void{{.*}}@objc_msgSend{{.*}}({{.*}} ptr [[CALL2]])
x.fnptr = [] {};
}
// CHECK-LABEL: define{{.*}} void @_Z2t2P1X
void t2(X *x) {
// Test the case when the lambda isn't unique. (see OpaqueValueExpr::isUnique)
// FIXME: This asserts if the lambda isn't trivially copy/movable.
// [x setBlk: operator+([x blk], [] {})]
// CHECK: call ptr{{.*}}@objc_msgSend{{.*}}
// CHECK: [[PLUS:%.*]] = call ptr @"_ZplIZ2t2P1XE3$_0EU13block_pointerFvvES4_T_"
// CHECK: call void{{.*}}@objc_msgSend{{.*}}({{.*}} [[PLUS]])
x.blk += [] {};
// CHECK: call ptr{{.*}}@objc_msgSend{{.*}}
// CHECK: [[PLUS:%.*]] = call ptr @"_ZplIZ2t2P1XE3$_1EPFvvES4_T_"
// CHECK: call void{{.*}}@objc_msgSend{{.*}}({{.*}} [[PLUS]])
x.fnptr += [] {};
}