Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsNaN (0.03 sec)

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

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (MTVSRD (MOVDconst [c]))
    	// cond: !math.IsNaN(math.Float64frombits(uint64(c)))
    	// result: (FMOVDconst [math.Float64frombits(uint64(c))])
    	for {
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		if !(!math.IsNaN(math.Float64frombits(uint64(c)))) {
    			break
    		}
    		v.reset(OpPPC64FMOVDconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top