Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for updateUnsetPredPos (0.45 sec)

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

    	}
    	return &ssa.FuncLines{Filename: file, StartLineno: start, Lines: lines}, nil
    }
    
    // updateUnsetPredPos propagates the earliest-value position information for b
    // towards all of b's predecessors that need a position, and recurs on that
    // predecessor if its position is updated. B should have a non-empty position.
    func (s *state) updateUnsetPredPos(b *ssa.Block) {
    	if b.Pos == src.NoXPos {
    		s.Fatalf("Block %s should have a position", b)
    	}
    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