Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isSoftFloat (0.1 sec)

  1. src/cmd/compile/internal/walk/walk.go

    		case ir.OADD, ir.OSUB, ir.OMUL, ir.ONEG:
    			return ssagen.Arch.SoftFloat && isSoftFloat(n.Type())
    		case ir.OLT, ir.OEQ, ir.ONE, ir.OLE, ir.OGE, ir.OGT:
    			n := n.(*ir.BinaryExpr)
    			return ssagen.Arch.SoftFloat && isSoftFloat(n.X.Type())
    		case ir.OCONV:
    			n := n.(*ir.ConvExpr)
    			return ssagen.Arch.SoftFloat && (isSoftFloat(n.Type()) || isSoftFloat(n.X.Type()))
    
    		case ir.OMIN, ir.OMAX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top