Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for doPrintln (0.07 sec)

  1. src/cmd/compile/internal/walk/order.go

    		o.popTemp(t)
    
    	case ir.OCOPY:
    		n := n.(*ir.BinaryExpr)
    		t := o.markTemp()
    		n.X = o.expr(n.X, nil)
    		n.Y = o.expr(n.Y, nil)
    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    	case ir.OPRINT, ir.OPRINTLN, ir.ORECOVERFP:
    		n := n.(*ir.CallExpr)
    		t := o.markTemp()
    		o.call(n)
    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    	// Special: order arguments to inner call but not call itself.
    	case ir.ODEFER, ir.OGO:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top