Files
RedBear-OS/local/recipes/dev/libclc/source/clang/test/CodeGenCXX/cxx1y-init-captures-eh.cpp
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

105 lines
2.3 KiB
C++

// RUN: %clang_cc1 -std=c++1y -triple x86_64-linux-gnu -fexceptions -fcxx-exceptions -emit-llvm %s -o - | FileCheck %s
struct S {
S();
~S();
};
struct T {
T() noexcept;
~T();
int n;
};
// CHECK-LABEL: define{{.*}} void @_Z1fv(
void f() {
// CHECK: call void @_ZN1SC1Ev(
// CHECK: invoke void @__cxa_throw
//
// Ensure we call the lambda destructor here, and do not call the destructor
// for the capture.
// CHECK: landingpad
// CHECK-NOT: _ZN1SD
// CHECK: call void @"_ZZ1fvEN3$_0D1Ev"(
// CHECK-NOT: _ZN1SD
// CHECK: resume
[s = S()] {}, throw 0;
// CHECK: }
}
// CHECK-LABEL: define{{.*}} void @_Z1gv(
void g() {
// CHECK: call void @_ZN1SC1Ev(
// CHECK: invoke void @__cxa_throw
//
// Ensure we call the lambda destructor here, and do not call the destructor
// for the capture.
// CHECK: landingpad
// CHECK-NOT: @"_ZZ1gvEN3$_0D1Ev"(
// CHECK: call void @_ZN1SD1Ev(
// CHECK-NOT: @"_ZZ1gvEN3$_0D1Ev"(
// CHECK: resume
[s = S(), t = (throw 0, 1)] {};
// CHECK: }
}
void x() noexcept;
void y() noexcept;
// CHECK-LABEL: define{{.*}} void @_Z1hbb(
void h(bool b1, bool b2) {
// CHECK: {{.*}} = alloca i1,
// CHECK: %[[S_ISACTIVE:.*]] = alloca i1,
// CHECK: {{.*}} = alloca i1,
// lambda init: s and t, branch on b1
// CHECK: call void @_ZN1SC1Ev(
// CHECK: store i1 true, ptr %[[S_ISACTIVE]], align 1
// CHECK: call void @_ZN1TC1Ev(
// CHECK: br i1
// throw 1
// CHECK: invoke void @__cxa_throw
// completion of lambda init, branch on b2
// CHECK: store i32 42,
// CHECK: store i1 false, ptr %[[S_ISACTIVE]], align 1
// CHECK: br i1
// throw 2
// CHECK: invoke void @__cxa_throw
// end of full-expression
// CHECK: call void @_Z1xv(
// CHECK: call void @"_ZZ1hbbEN3$_0D1Ev"(
// CHECK: call void @_ZN1TD1Ev(
// CHECK: call void @_Z1yv(
// CHECK: ret void
// cleanups for throw 1
// CHECK: landingpad
// CHECK-NOT: @"_ZZ1hbbEN3$_0D1Ev"(
// CHECK: br
// cleanups for throw 2
// CHECK: landingpad
// CHECK: call void @"_ZZ1hbbEN3$_0D1Ev"(
// CHECK: br
// common cleanup code
// CHECK: call void @_ZN1TD1Ev(
// CHECK: load i1, ptr %[[S_ISACTIVE]],
// CHECK: br i1
// CHECK: call void @_ZN1SD1Ev(
// CHECK: br
// CHECK: resume
[s = S(), t = T().n, u = (b1 ? throw 1 : 42)] {}, (b2 ? throw 2 : 0), x();
y();
// CHECK: }
}