Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for intrinsicCall (0.42 sec)

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

    		return false
    	}
    	name, ok := n.Fun.(*ir.Name)
    	if !ok {
    		return false
    	}
    	return findIntrinsic(name.Sym()) != nil
    }
    
    // intrinsicCall converts a call to a recognized intrinsic function into the intrinsic SSA operation.
    func (s *state) intrinsicCall(n *ir.CallExpr) *ssa.Value {
    	v := findIntrinsic(n.Fun.Sym())(s, n, s.intrinsicArgs(n))
    	if ssa.IntrinsicsDebug > 0 {
    		x := v
    		if x == nil {
    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