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).
76 lines
3.2 KiB
C++
76 lines
3.2 KiB
C++
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -DCHECK_ERROR %s -verify
|
|
|
|
float function_scope(float a) {
|
|
#pragma float_control(precise, on) junk // expected-warning {{extra tokens at end of '#pragma float_control' - ignored}}
|
|
return a;
|
|
}
|
|
|
|
// Ok, at namespace scope.
|
|
namespace foo {
|
|
#pragma float_control(push)
|
|
#pragma float_control(pop)
|
|
}
|
|
|
|
// Ok, within a language linkage specification.
|
|
extern "C" {
|
|
#pragma float_control(push)
|
|
#pragma float_control(pop)
|
|
}
|
|
|
|
// Same.
|
|
extern "C++" {
|
|
#pragma float_control(push)
|
|
#pragma float_control(pop)
|
|
}
|
|
|
|
#ifdef CHECK_ERROR
|
|
// Ok at file scope.
|
|
#pragma float_control(push)
|
|
#pragma float_control(pop)
|
|
#pragma float_control(precise, on, push)
|
|
void check_stack() {
|
|
// Not okay within a function declaration.
|
|
#pragma float_control(push) // expected-error {{can only appear at file or namespace scope or within a language linkage specification}}
|
|
#pragma float_control(pop) // expected-error {{can only appear at file or namespace scope or within a language linkage specification}}
|
|
#pragma float_control(precise, on, push) // expected-error {{can only appear at file or namespace scope or within a language linkage specification}}
|
|
#pragma float_control(except, on, push) // expected-error {{can only appear at file or namespace scope or within a language linkage specification}}
|
|
#pragma float_control(except, on, push, junk) // expected-error {{float_control is malformed}}
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fdenormal-fp-math=preserve-sign,preserve-sign -fsyntax-only %s -DDEFAULT -verify
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only %s -ffp-contract=fast -DPRECISE -verify
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only %s -ffp-contract=off -frounding-math -ffp-exception-behavior=strict -DSTRICT -verify
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -menable-no-infs -menable-no-nans -funsafe-math-optimizations -fno-signed-zeros -mreassociate -freciprocal-math -ffp-contract=fast -ffast-math -ffinite-math-only -fsyntax-only %s -DFAST -verify
|
|
double a = 0.0;
|
|
double b = 1.0;
|
|
|
|
#ifdef STRICT
|
|
#pragma float_control(precise, off) // expected-error {{'#pragma float_control(precise, off)' is illegal when except is enabled}}
|
|
#else
|
|
#ifndef FAST
|
|
#pragma STDC FENV_ACCESS ON
|
|
#pragma float_control(precise, off) // expected-error {{'#pragma float_control(precise, off)' is illegal when except is enabled}}
|
|
#endif
|
|
#endif
|
|
|
|
#pragma float_control(precise, on)
|
|
#pragma float_control(except, on) // OK
|
|
#ifndef STRICT
|
|
#pragma float_control(except, on)
|
|
#pragma float_control(precise, off) // expected-error {{'#pragma float_control(precise, off)' is illegal when except is enabled}}
|
|
#endif
|
|
int main() {
|
|
#ifdef STRICT
|
|
#pragma float_control(precise, off) // expected-error {{'#pragma float_control(precise, off)' is illegal when except is enabled}}
|
|
#else
|
|
#pragma float_control(precise, off) // expected-error {{'#pragma float_control(precise, off)' is illegal when except is enabled}}
|
|
#endif
|
|
#pragma float_control(except, on)
|
|
// error: '#pragma float_control(except, on)' is illegal when precise is disabled
|
|
double x = b / a; // only used for fp flag setting
|
|
if (a == a) // only used for fp flag setting
|
|
return 0; //(int)x;
|
|
}
|