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).
26 lines
845 B
YAML
26 lines
845 B
YAML
# RUN: not --crash llc -mtriple=aarch64 -o /dev/null -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s
|
|
# REQUIRES: aarch64-registered-target
|
|
|
|
# Undef uses are illegal for generic vregs.
|
|
|
|
---
|
|
name: test_undef_use
|
|
liveins:
|
|
body: |
|
|
bb.0:
|
|
%0:_(s32) = G_CONSTANT i32 0
|
|
|
|
; Test generic instruction
|
|
; CHECK: *** Bad machine code: Generic virtual register use cannot be undef ***
|
|
G_STORE %0, undef %1:_(p0) :: (store (s32))
|
|
|
|
; Make sure this fails on a post-isel generic instruction.
|
|
; CHECK: *** Bad machine code: Generic virtual register use cannot be undef ***
|
|
$x0 = COPY undef %2:_(s64)
|
|
|
|
; Make sure this fails with a target instruction
|
|
; CHECK: *** Bad machine code: Generic virtual register use cannot be undef ***
|
|
RET_ReallyLR implicit $x0, implicit undef %3:_(s32)
|
|
...
|
|
|