Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tcShift (0.15 sec)

  1. src/cmd/compile/internal/typecheck/typecheck.go

    		if n.IncDec && !okforarith[n.X.Type().Kind()] {
    			base.Errorf("invalid operation: %v (non-numeric type %v)", n, n.X.Type())
    			return n
    		}
    		switch n.AsOp {
    		case ir.OLSH, ir.ORSH:
    			n.X, n.Y, _ = tcShift(n, n.X, n.Y)
    		case ir.OADD, ir.OAND, ir.OANDNOT, ir.ODIV, ir.OMOD, ir.OMUL, ir.OOR, ir.OSUB, ir.OXOR:
    			n.X, n.Y, _ = tcArith(n, n.AsOp, n.X, n.Y)
    		default:
    			base.Fatalf("invalid assign op: %v", n.AsOp)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/expr.go

    import (
    	"fmt"
    	"go/constant"
    	"go/token"
    	"internal/types/errors"
    	"strings"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    )
    
    func tcShift(n, l, r ir.Node) (ir.Node, ir.Node, *types.Type) {
    	if l.Type() == nil || r.Type() == nil {
    		return l, r, nil
    	}
    
    	r = DefaultLit(r, types.Types[types.TUINT])
    	t := r.Type()
    	if !t.IsInteger() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top