Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewValue0A (0.11 sec)

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

    func (s *state) newValue0(op ssa.Op, t *types.Type) *ssa.Value {
    	return s.curBlock.NewValue0(s.peekPos(), op, t)
    }
    
    // newValue0A adds a new value with no arguments and an aux value to the current block.
    func (s *state) newValue0A(op ssa.Op, t *types.Type, aux ssa.Aux) *ssa.Value {
    	return s.curBlock.NewValue0A(s.peekPos(), op, t, aux)
    }
    
    // newValue0I adds a new value with no arguments and an auxint value to the current block.
    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