Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasFlagInput (0.63 sec)

  1. src/cmd/compile/internal/ssa/schedule.go

    	// in their output.
    	switch v.Op {
    	case OpPPC64SUBC, OpPPC64ADDC, OpPPC64SUBCconst, OpPPC64ADDCconst:
    		return true
    	}
    	return false
    }
    
    // hasFlagInput reports whether v has a flag value as any of its inputs.
    func (v *Value) hasFlagInput() bool {
    	for _, a := range v.Args {
    		if a.isFlagOp() {
    			return true
    		}
    	}
    	// PPC64 carry dependencies are conveyed through their final argument,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top