Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 41 of 41 for pdkill (0.26 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    // liveness effects on a variable.
    //
    // The possible flags are:
    //
    //	uevar - used by the instruction
    //	varkill - killed by the instruction (set)
    //
    // A kill happens after the use (for an instruction that updates a value, for example).
    type liveEffect int
    
    const (
    	uevar liveEffect = 1 << iota
    	varkill
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top