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).
36 lines
890 B
C++
36 lines
890 B
C++
// RUN: %clangxx -target x86_64-unknown-unknown -g \
|
|
// RUN: %s -emit-llvm -S -o - | FileCheck %s
|
|
|
|
// RUN: %clangxx -target x86_64-unknown-unknown -g \
|
|
// RUN: -fno-elide-constructors %s -emit-llvm -S -o - | \
|
|
// RUN: FileCheck %s -check-prefix=NOELIDE
|
|
|
|
struct Foo {
|
|
Foo() = default;
|
|
Foo(Foo &&other) { x = other.x; }
|
|
int x;
|
|
};
|
|
void some_function(int);
|
|
Foo getFoo() {
|
|
Foo foo;
|
|
foo.x = 41;
|
|
some_function(foo.x);
|
|
return foo;
|
|
}
|
|
|
|
int main() {
|
|
Foo bar = getFoo();
|
|
return bar.x;
|
|
}
|
|
|
|
// Check that NRVO variables are stored as a pointer with deref if they are
|
|
// stored in the return register.
|
|
|
|
// CHECK: %[[RESULT:.*]] = alloca ptr, align 8
|
|
// CHECK: #dbg_declare(ptr %[[RESULT]],
|
|
// CHECK-SAME: !DIExpression(DW_OP_deref)
|
|
|
|
// NOELIDE: %[[FOO:.*]] = alloca %struct.Foo, align 4
|
|
// NOELIDE: #dbg_declare(ptr %[[FOO]],
|
|
// NOELIDE-SAME: !DIExpression()
|