Files
RedBear-OS/local/recipes/dev/libclc/source/clang/test/CodeGenCXX/member-expressions.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

81 lines
1.3 KiB
C++

// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin10 | FileCheck %s
// PR5392
namespace PR5392 {
struct A
{
static int a;
};
A a1;
void f()
{
// CHECK: store i32 10, ptr @_ZN6PR53921A1aE
a1.a = 10;
// CHECK: store i32 20, ptr @_ZN6PR53921A1aE
A().a = 20;
}
}
struct A {
A();
~A();
enum E { Foo };
};
A *g();
void f(A *a) {
A::E e1 = a->Foo;
// CHECK: call noundef ptr @_Z1gv()
A::E e2 = g()->Foo;
// CHECK: call void @_ZN1AC1Ev(
// CHECK: call void @_ZN1AD1Ev(
A::E e3 = A().Foo;
}
namespace test3 {
struct A {
static int foo();
};
int f() {
return A().foo();
}
}
namespace test4 {
struct A {
int x;
};
struct B {
int x;
void foo();
};
struct C : A, B {
};
extern C *c_ptr;
// CHECK-LABEL: define{{.*}} i32 @_ZN5test44testEv()
int test() {
// CHECK: load {{.*}} @_ZN5test45c_ptrE
// CHECK-NEXT: getelementptr
// CHECK-NEXT: call void @_ZN5test41B3fooEv
c_ptr->B::foo();
// CHECK: load {{.*}} @_ZN5test45c_ptrE
// CHECK-NEXT: getelementptr
// CHECK-NEXT: getelementptr
// CHECK-NEXT: store i32 5
c_ptr->B::x = 5;
// CHECK: load {{.*}} @_ZN5test45c_ptrE
// CHECK-NEXT: getelementptr
// CHECK-NEXT: getelementptr
// CHECK-NEXT: load i32, ptr
return c_ptr->B::x;
}
}