Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CalcSize (0.72 sec)

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

    			}
    			return v
    		}
    
    		// map <--> *hmap
    		if to.Kind() == types.TMAP && from == types.NewPtr(reflectdata.MapType()) {
    			return v
    		}
    
    		types.CalcSize(from)
    		types.CalcSize(to)
    		if from.Size() != to.Size() {
    			s.Fatalf("CONVNOP width mismatch %v (%d) -> %v (%d)\n", from, from.Size(), to, to.Size())
    			return nil
    		}
    		if etypesign(from.Kind()) != etypesign(to.Kind()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top