Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsStmt (0.08 sec)

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

    }
    
    // newValue1Apos adds a new value with one argument and an aux value to the current block.
    // isStmt determines whether the created values may be a statement or not
    // (i.e., false means never, yes means maybe).
    func (s *state) newValue1Apos(op ssa.Op, t *types.Type, aux ssa.Aux, arg *ssa.Value, isStmt bool) *ssa.Value {
    	if isStmt {
    		return s.curBlock.NewValue1A(s.peekPos(), op, t, aux, arg)
    	}
    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