Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsOutputParamHeapAddr (0.25 sec)

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

    	// TODO: if the output parameter is heap-allocated, then we
    	// don't need to keep the stack copy live?
    	if lv.fn.HasDefer() {
    		for i, n := range lv.vars {
    			if n.Class == ir.PPARAMOUT {
    				if n.IsOutputParamHeapAddr() {
    					// Just to be paranoid.  Heap addresses are PAUTOs.
    					base.Fatalf("variable %v both output param and heap output param", n)
    				}
    				if n.Heapaddr != nil {
    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