Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for zerodegree (0.08 sec)

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

    		// TODO: improve this part
    		// No successor of the previously scheduled block works.
    		// Pick a zero-degree block if we can.
    		for len(zerodegree) > 0 {
    			// Pop an element from the tail of the queue.
    			cid := zerodegree[len(zerodegree)-1]
    			zerodegree = zerodegree[:len(zerodegree)-1]
    			if !scheduled[cid] {
    				bid = cid
    				continue blockloop
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top