Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DeferCheckSize (0.27 sec)

  1. src/cmd/compile/internal/types/size.go

    		return
    	}
    
    	if t.widthCalculated() {
    		return
    	}
    
    	if CalcSizeDisabled {
    		base.Fatalf("width not calculated: %v", t)
    	}
    
    	// defer CheckSize calls until after we're done
    	DeferCheckSize()
    
    	lno := base.Pos
    	if pos := t.Pos(); pos.IsKnown() {
    		base.Pos = pos
    	}
    
    	t.width = -2
    	t.align = 0  // 0 means use t.Width, below
    	t.alg = AMEM // default
    	// default t.ptrBytes is 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top