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).
78 lines
1.6 KiB
Plaintext
78 lines
1.6 KiB
Plaintext
// RUN: %clang_cc1 %s -triple spir -emit-llvm -O0 -o - | FileCheck %s
|
|
|
|
struct B {
|
|
int mb;
|
|
};
|
|
|
|
class D : public B {
|
|
public:
|
|
int getmb() { return mb; }
|
|
};
|
|
|
|
void foo() {
|
|
D d;
|
|
//CHECK-LABEL: foo
|
|
//CHECK: addrspacecast ptr %d to ptr addrspace(4)
|
|
//CHECK: call spir_func noundef i32 @_ZNU3AS41D5getmbEv(ptr addrspace(4)
|
|
d.getmb();
|
|
}
|
|
|
|
//Derived and Base are in the same address space.
|
|
|
|
//CHECK: define linkonce_odr spir_func noundef i32 @_ZNU3AS41D5getmbEv(ptr addrspace(4) {{[^,]*}} %this)
|
|
|
|
|
|
// Calling base method through multiple inheritance.
|
|
|
|
class B2 {
|
|
public:
|
|
void baseMethod() const { }
|
|
int &getRef() { return bb; }
|
|
int bb;
|
|
};
|
|
|
|
class Derived : public B, public B2 {
|
|
public:
|
|
void work() const { baseMethod(); }
|
|
// CHECK-LABEL: work
|
|
};
|
|
|
|
void pr43145(const Derived *argDerived) {
|
|
argDerived->work();
|
|
}
|
|
|
|
// Casting from base to derived.
|
|
|
|
void pr43145_2(B *argB) {
|
|
Derived *x = (Derived*)argB;
|
|
// CHECK-LABEL: @_Z9pr43145_2
|
|
}
|
|
|
|
// Assigning to reference returned by base class method through derived class.
|
|
|
|
void pr43145_3(int n) {
|
|
Derived d;
|
|
d.getRef() = n;
|
|
|
|
// CHECK-LABEL: @_Z9pr43145_3
|
|
// CHECK: addrspacecast ptr %d to ptr addrspace(4)
|
|
// CHECK: call {{.*}} @_ZNU3AS42B26getRefEv
|
|
|
|
private Derived *pd = &d;
|
|
pd->getRef() = n;
|
|
|
|
// CHECK: addrspacecast ptr %2 to ptr addrspace(4)
|
|
// CHECK: call {{.*}} @_ZNU3AS42B26getRefEv
|
|
}
|
|
|
|
// Implicit conversion of derived to base.
|
|
|
|
void functionWithBaseArgPtr(class B2 *b) {}
|
|
void functionWithBaseArgRef(class B2 &b) {}
|
|
|
|
void pr43145_4() {
|
|
Derived d;
|
|
functionWithBaseArgPtr(&d);
|
|
functionWithBaseArgRef(d);
|
|
}
|