Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 31 of 31 for TYPE_BRANCH (0.08 sec)

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

    // Not all architectures need the returned instruction, but otherwise
    // the boilerplate is common to all.
    func (s *State) Br(op obj.As, target *ssa.Block) *obj.Prog {
    	p := s.Prog(op)
    	p.To.Type = obj.TYPE_BRANCH
    	s.Branches = append(s.Branches, Branch{P: p, B: target})
    	return p
    }
    
    // DebugFriendlySetPosFrom adjusts Pos.IsStmt subject to heuristics
    // that reduce "jumpy" line number churn when debugging.
    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