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).
91 lines
3.4 KiB
C++
91 lines
3.4 KiB
C++
// RUN: %clang_cc1 -std=c++11 -triple aarch64-arm-none-eabi -target-feature -fp8 -ast-dump %s | \
|
|
// RUN: FileCheck %s --strict-whitespace
|
|
|
|
// REQUIRES: aarch64-registered-target || arm-registered-target
|
|
|
|
/* Various contexts where type __mfp8 can appear. */
|
|
|
|
/* Namespace */
|
|
namespace {
|
|
__mfp8 f2n;
|
|
__mfp8 arr1n[10];
|
|
}
|
|
|
|
//CHECK: |-NamespaceDecl {{.*}}
|
|
//CHECK-NEXT: | |-VarDecl {{.*}} f2n '__mfp8'
|
|
//CHECK-NEXT: | `-VarDecl {{.*}} arr1n '__mfp8[10]'
|
|
|
|
|
|
const __mfp8 func1n(const __mfp8 mfp8) {
|
|
// this should fail
|
|
__mfp8 f1n;
|
|
f1n = mfp8;
|
|
return f1n;
|
|
}
|
|
//CHECK: |-FunctionDecl {{.*}} func1n 'const __mfp8 (const __mfp8)'
|
|
//CHECK: | `-VarDecl {{.*}} f1n '__mfp8'
|
|
//CHECK-NEXT: |-BinaryOperator {{.*}} '__mfp8' lvalue '='
|
|
//CHECK-NEXT: | |-DeclRefExpr {{.*}} '__mfp8' lvalue Var {{.*}} 'f1n' '__mfp8'
|
|
//CHECK-NEXT: | `-ImplicitCastExpr {{.*}} '__mfp8' <LValueToRValue>
|
|
//CHECK-NEXT: | `-DeclRefExpr {{.*}} 'const __mfp8' lvalue ParmVar {{.*}} 'mfp8' 'const __mfp8'
|
|
//CHECK-NEXT: `-ReturnStmt {{.*}}
|
|
//CHECK-NEXT: `-ImplicitCastExpr {{.*}} '__mfp8' <LValueToRValue>
|
|
//CHECK-NEXT: `-DeclRefExpr {{.*}} '__mfp8' lvalue Var {{.*}} 'f1n' '__mfp8'
|
|
|
|
|
|
/* Class */
|
|
|
|
class C1 {
|
|
__mfp8 f1c;
|
|
static const __mfp8 f2c;
|
|
volatile __mfp8 f3c;
|
|
public:
|
|
C1(__mfp8 arg) : f1c(arg), f3c(arg) { }
|
|
__mfp8 func1c(__mfp8 arg ) {
|
|
return arg;
|
|
}
|
|
static __mfp8 func2c(__mfp8 arg) {
|
|
return arg;
|
|
}
|
|
};
|
|
|
|
//CHECK: | |-CXXRecordDecl {{.*}} referenced class C1
|
|
//CHECK-NEXT: | |-FieldDecl {{.*}} f1c '__mfp8'
|
|
//CHECK-NEXT: | |-VarDecl {{.*}} f2c 'const __mfp8' static
|
|
//CHECK-NEXT: | |-FieldDecl {{.*}} f3c 'volatile __mfp8'
|
|
//CHECK-NEXT: | |-AccessSpecDecl {{.*}}
|
|
//CHECK-NEXT: | |-CXXConstructorDecl {{.*}} C1 'void (__mfp8)' implicit-inline
|
|
//CHECK-NEXT: | | |-ParmVarDecl {{.*}} arg '__mfp8'
|
|
//CHECK-NEXT: | | |-CXXCtorInitializer {{.*}} 'f1c' '__mfp8'
|
|
//CHECK-NEXT: | | | `-ImplicitCastExpr {{.*}} '__mfp8' <LValueToRValue>
|
|
//CHECK-NEXT: | | | `-DeclRefExpr {{.*}} '__mfp8' lvalue ParmVar {{.*}} 'arg' '__mfp8'
|
|
//CHECK-NEXT: | | |-CXXCtorInitializer {{.*}} 'f3c' 'volatile __mfp8'
|
|
//CHECK-NEXT: | | | `-ImplicitCastExpr {{.*}} '__mfp8' <LValueToRValue>
|
|
//CHECK-NEXT: | | | `-DeclRefExpr {{.*}} '__mfp8' lvalue ParmVar {{.*}} 'arg' '__mfp8'
|
|
//CHECK-NEXT: | | `-CompoundStmt {{.*}}
|
|
//CHECK-NEXT: | |-CXXMethodDecl {{.*}} func1c '__mfp8 (__mfp8)' implicit-inline
|
|
//CHECK-NEXT: | | |-ParmVarDecl {{.*}} arg '__mfp8'
|
|
//CHECK-NEXT: | | `-CompoundStmt {{.*}}
|
|
//CHECK-NEXT: | | `-ReturnStmt {{.*}}
|
|
//CHECK-NEXT: | | `-ImplicitCastExpr {{.*}} '__mfp8' <LValueToRValue>
|
|
//CHECK-NEXT: | | `-DeclRefExpr {{.*}} '__mfp8' lvalue ParmVar {{.*}} 'arg' '__mfp8'
|
|
//CHECK-NEXT: | `-CXXMethodDecl {{.*}} func2c '__mfp8 (__mfp8)' static implicit-inline
|
|
//CHECK-NEXT: | |-ParmVarDecl {{.*}} arg '__mfp8'
|
|
//CHECK-NEXT: | `-CompoundStmt {{.*}}
|
|
//CHECK-NEXT: | `-ReturnStmt {{.*}}
|
|
//CHECK-NEXT: | `-ImplicitCastExpr {{.*}} '__mfp8' <LValueToRValue>
|
|
//CHECK-NEXT: | `-DeclRefExpr {{.*}} '__mfp8' lvalue ParmVar {{.*}} 'arg' '__mfp8'
|
|
|
|
template <class C> struct S1 {
|
|
C mem1;
|
|
};
|
|
|
|
template <> struct S1<__mfp8> {
|
|
__mfp8 mem2;
|
|
};
|
|
|
|
//CHECK: |-TemplateArgument type '__mfp8'
|
|
//CHECK-NEXT: | `-BuiltinType {{.*}} '__mfp8'
|
|
//CHECK-NEXT: |-CXXRecordDecl {{.*}} implicit struct S1
|
|
//CHECK-NEXT: `-FieldDecl {{.*}} mem2 '__mfp8'
|