Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CheckIntegrity (0.16 sec)

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

    		po.noneq[i1] = bs
    	} else if bs.Test(i2) {
    		// Already recorded
    		return
    	}
    	bs.Set(i2)
    	po.upushneq(i1, i2)
    }
    
    // CheckIntegrity verifies internal integrity of a poset. It is intended
    // for debugging purposes.
    func (po *poset) CheckIntegrity() {
    	// Record which index is a constant
    	constants := newBitset(int(po.lastidx + 1))
    	for _, c := range po.constants {
    		constants.Set(c)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top