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).
40 lines
1.7 KiB
Fortran
40 lines
1.7 KiB
Fortran
! Test correct lowering of 128 bit integer parameters.
|
|
! RUN: bbc -emit-fir %s -o - | FileCheck %s
|
|
|
|
program i128
|
|
integer(16), parameter :: maxi64 = 9223372036854775807_16
|
|
integer(16), parameter :: mini64 = -9223372036854775808_16
|
|
integer(16), parameter :: maxi128 = 170141183460469231731687303715884105727_16
|
|
integer(16), parameter :: mini128 = -170141183460469231731687303715884105728_16
|
|
integer(16), parameter :: x = 9223372036854775808_16
|
|
integer(16), parameter :: y = -9223372036854775809_16
|
|
integer(16), parameter :: z = 0_16
|
|
print*,x
|
|
print*,y
|
|
end
|
|
|
|
! CHECK-LABEL: func.func @_QQmain() attributes {fir.bindc_name = "i128"} {
|
|
! CHECK-COUNT-2: %{{.*}} = fir.call @_FortranAioOutputInteger128(%{{.*}}, %{{.*}}) {{.*}}: (!fir.ref<i8>, i128) -> i1
|
|
|
|
|
|
! CHECK-LABEL: fir.global internal @_QFECmaxi128 constant : i128 {
|
|
! CHECK-NEXT: %{{.*}} = arith.constant 170141183460469231731687303715884105727 : i128
|
|
|
|
! CHECK-LABEL: fir.global internal @_QFECmaxi64 constant : i128 {
|
|
! CHECK-NEXT: %{{.*}} = arith.constant 9223372036854775807 : i128
|
|
|
|
! CHECK-LABEL: fir.global internal @_QFECmini128 constant : i128 {
|
|
! CHECK-NEXT: %{{.*}} = arith.constant -170141183460469231731687303715884105728 : i128
|
|
|
|
! CHECK-LABEL: fir.global internal @_QFECmini64 constant : i128 {
|
|
! CHECK-NEXT: %{{.*}} = arith.constant -9223372036854775808 : i128
|
|
|
|
! CHECK-LABEL: fir.global internal @_QFECx constant : i128 {
|
|
! CHECK-NEXT: %{{.*}} = arith.constant 9223372036854775808 : i128
|
|
|
|
! CHECK-LABEL: fir.global internal @_QFECy constant : i128 {
|
|
! CHECK-NEXT: %{{.*}} = arith.constant -9223372036854775809 : i128
|
|
|
|
! CHECK-LABEL: fir.global internal @_QFECz constant : i128 {
|
|
! CHECK-NEXT: %{{.*}} = arith.constant 0 : i128
|