Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for OpInterLECall (0.29 sec)

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

    	case ir.OADDR:
    		n := n.(*ir.AddrExpr)
    		return s.addr(n.X)
    
    	case ir.ORESULT:
    		n := n.(*ir.ResultExpr)
    		if s.prevCall == nil || s.prevCall.Op != ssa.OpStaticLECall && s.prevCall.Op != ssa.OpInterLECall && s.prevCall.Op != ssa.OpClosureLECall {
    			panic("Expected to see a previous call")
    		}
    		which := n.Index
    		if which == -1 {
    			panic(fmt.Errorf("ORESULT %v does not match call %s", n, s.prevCall))
    		}
    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