Files
RedBear-OS/local/recipes/dev/libclc/source/clang/test/CodeGen/attr-mode-enums.c
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

46 lines
1.4 KiB
C

// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm %s -o - | FileCheck %s
// Test checks that 'mode' attribute is handled correctly with enums, i. e. code
// 1. "typedef enum { A } __attribute__((mode(HI))) T;" is accepted,
// 2. "enum X __attribute__((mode(QI))) var;" forms a complete integer type.
int main(void) {
// CHECK: [[X1:%.+]] = alloca i8
enum { A1, B1 } __attribute__((mode(QI))) x1 = A1;
// CHECK: [[X2:%.+]] = alloca i16
enum { A2, B2 } x2 __attribute__((mode(HI))) = B2;
// CHECK: [[X3:%.+]] = alloca i32
typedef enum { A3, B3 } __attribute__((mode(SI))) T3;
T3 x3 = A3;
// CHECK: [[X4:%.+]] = alloca i64
typedef enum { A4, B4 } T4 __attribute__((mode(DI)));
T4 x4 = B4;
// CHECK: [[X5:%.+]] = alloca i8
typedef enum __attribute__((mode(QI))) { A5, B5 } T5;
T5 x5 = A5;
// CHECK: [[X6:%.+]] = alloca i8
typedef enum X __attribute__((mode(QI))) T6;
T6 x6;
// CHECK: [[X7:%.+]] = alloca i128
enum { A7, B7 } __attribute__((mode(TI))) x7 = A7;
// CHECK: [[X8:%.+]] = alloca i8
enum __attribute__((mode(QI))) { A8, B8 } x8 = B8;
// CHECK: store i8 0, ptr [[X1]]
// CHECK: store i16 1, ptr [[X2]]
// CHECK: store i32 0, ptr [[X3]]
// CHECK: store i64 1, ptr [[X4]]
// CHECK: store i8 0, ptr [[X5]]
// CHECK: store i128 0, ptr [[X7]]
// CHECK: store i8 1, ptr [[X8]]
return x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8;
}