Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for passIdxByName (0.14 sec)

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

    			fmt.Printf("range is not valid: %v\n", mask)
    			return nil
    		}
    		var first, last int
    		if mask == "*" {
    			first = 0
    			last = len(passes) - 1
    		} else {
    			first = passIdxByName(spl[0])
    			last = passIdxByName(spl[len(spl)-1])
    		}
    		if first < 0 || last < 0 || first > last {
    			fmt.Printf("range is not valid: %v\n", r)
    			return nil
    		}
    		for p := first; p <= last; p++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top