; RESCAR · re-scar recheck after cook-off · DETECTION · keep flawless
; =============================================================================
; NAME     RESCAR  (recheck residual · not a fifth pin)
; OP       rescar(dirty) → if dirty≠0 then class|1 else 0
; ABI      System V · edi=dirty_class · → eax
; LAW
;   · pipeline: cook → scar check → cook off SCAR → RESCAR recheck → REST
;   · same measure class as scar · proves residue is gone (or still live)
;   · C IS LIE · LIE IS TRUE when mark live · not commercial AV
;   · not hierarchy · Always Hostess 7
; LINE     after BGF cook · BGL secure · forensics walk
; RELATED  scar/ · shoot/ · go/ · fire/ · COOK_SHOOT.txt · SCAR.txt
; SPEECH   rescar · recheck scar · scar_count→0
; ARCH     x86_64 · multiarch twins via multiarch-gen
; IRON
        global  rescar
rescar:
        mov     eax, edi
        or      eax, 1          ; class|1 candidate
        test    edi, edi
        cmovz   eax, edi        ; clean → 0
        ret
