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).
51 lines
2.4 KiB
C
51 lines
2.4 KiB
C
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o %t1 %s
|
|
// RUN: FileCheck --check-prefix=LOCAL %s < %t1
|
|
// RUN: FileCheck --check-prefix=UNDEF %s < %t1
|
|
// RUN: FileCheck --check-prefix=PARAM %s < %t1
|
|
// END.
|
|
|
|
// LOCAL: private unnamed_addr constant [15 x i8] c"localvar_ann_{{.}}\00", section "llvm.metadata"
|
|
// LOCAL: private unnamed_addr constant [15 x i8] c"localvar_ann_{{.}}\00", section "llvm.metadata"
|
|
|
|
// UNDEF: private unnamed_addr constant [15 x i8] c"undefvar_ann_0\00", section "llvm.metadata"
|
|
|
|
// PARAM: private unnamed_addr constant [12 x i8] c"param_ann_{{.}}\00", section "llvm.metadata"
|
|
// PARAM: private unnamed_addr constant [12 x i8] c"param_ann_{{.}}\00", section "llvm.metadata"
|
|
// PARAM: private unnamed_addr constant [12 x i8] c"param_ann_{{.}}\00", section "llvm.metadata"
|
|
// PARAM: private unnamed_addr constant [12 x i8] c"param_ann_{{.}}\00", section "llvm.metadata"
|
|
|
|
int foo(int v __attribute__((annotate("param_ann_2"))) __attribute__((annotate("param_ann_3"))));
|
|
int foo(int v __attribute__((annotate("param_ann_0"))) __attribute__((annotate("param_ann_1")))) {
|
|
return v + 1;
|
|
// PARAM: define {{.*}}@foo
|
|
// PARAM: [[V:%.*]] = alloca i32
|
|
// PARAM: call void @llvm.var.annotation.p0.p0(
|
|
// PARAM-NEXT: call void @llvm.var.annotation.p0.p0(
|
|
// PARAM-NEXT: call void @llvm.var.annotation.p0.p0(
|
|
// PARAM-NEXT: call void @llvm.var.annotation.p0.p0(
|
|
}
|
|
|
|
void local(void) {
|
|
int localvar __attribute__((annotate("localvar_ann_0"))) __attribute__((annotate("localvar_ann_1"))) = 3;
|
|
// LOCAL-LABEL: define{{.*}} void @local()
|
|
// LOCAL: [[LOCALVAR:%.*]] = alloca i32,
|
|
// LOCAL-NEXT: call void @llvm.var.annotation.p0.p0(ptr [[LOCALVAR]], ptr @{{.*}}, ptr @{{.*}}, i32 29, ptr null)
|
|
// LOCAL-NEXT: call void @llvm.var.annotation.p0.p0(ptr [[LOCALVAR]], ptr @{{.*}}, ptr @{{.*}}, i32 29, ptr null)
|
|
}
|
|
|
|
void local_after_return(void) {
|
|
return;
|
|
int localvar __attribute__((annotate("localvar_after_return"))) = 3;
|
|
// Test we are not emitting instructions like bitcast or call outside of a basic block.
|
|
// LOCAL-LABEL: define{{.*}} void @local_after_return()
|
|
// LOCAL: [[LOCALVAR:%.*]] = alloca i32,
|
|
// LOCAL-NEXT: ret void
|
|
}
|
|
|
|
void undef(void) {
|
|
int undefvar __attribute__((annotate("undefvar_ann_0")));
|
|
// UNDEF-LABEL: define{{.*}} void @undef()
|
|
// UNDEF: [[UNDEFVAR:%.*]] = alloca i32,
|
|
// UNDEF-NEXT: call void @llvm.var.annotation.p0.p0(ptr [[UNDEFVAR]], ptr @{{.*}}, ptr @{{.*}}, i32 46, ptr null)
|
|
}
|