Files
RedBear-OS/local/recipes/dev/libclc/source/clang/test/Parser/asm-qualifiers.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

59 lines
2.0 KiB
C

// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -verify %s
void qualifiers(void) {
asm("");
asm volatile("");
asm inline("");
asm goto("" ::::foo);
foo:;
}
void unknown_qualifiers(void) {
asm noodle(""); // expected-error {{expected 'volatile', 'inline', 'goto', or '('}}
asm goto noodle("" ::::foo); // expected-error {{expected 'volatile', 'inline', 'goto', or '('}}
asm volatile noodle inline(""); // expected-error {{expected 'volatile', 'inline', 'goto', or '('}}
foo:;
}
void underscores(void) {
__asm__("");
__asm__ __volatile__("");
__asm__ __inline__("");
// Note: goto is not supported with underscore prefix+suffix.
__asm__ goto("" ::::foo);
foo:;
}
void permutations(void) {
asm goto inline volatile("" ::::foo);
asm goto inline("");
asm goto volatile inline("" ::::foo);
asm goto volatile("");
asm inline goto volatile("" ::::foo);
asm inline goto("" ::::foo);
asm inline volatile goto("" ::::foo);
asm inline volatile("");
asm volatile goto("" ::::foo);
asm volatile inline goto("" ::::foo);
asm volatile inline("");
foo:;
}
void duplicates(void) {
asm volatile volatile(""); // expected-error {{duplicate asm qualifier 'volatile'}}
__asm__ __volatile__ __volatile__(""); // expected-error {{duplicate asm qualifier 'volatile'}}
asm inline inline(""); // expected-error {{duplicate asm qualifier 'inline'}}
__asm__ __inline__ __inline__(""); // expected-error {{duplicate asm qualifier 'inline'}}
asm goto goto("" ::::foo); // expected-error {{duplicate asm qualifier 'goto'}}
__asm__ goto goto("" ::::foo); // expected-error {{duplicate asm qualifier 'goto'}}
foo:;
}
// globals
asm ("");
asm volatile (""); // expected-error {{meaningless 'volatile' on asm outside function}}
asm inline (""); // expected-error {{meaningless 'inline' on asm outside function}}
asm goto (""::::noodle); // expected-error {{meaningless 'goto' on asm outside function}}
// expected-error@-1 {{expected ')'}}
// expected-note@-2 {{to match this '('}}