Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ifeq (0.07 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    		if p.Scond&rmSuffixBit == 0 {
    			ins.funct3 = uint32(RM_RTZ)
    		} else {
    			ins.funct3 = uint32(p.Scond &^ rmSuffixBit)
    		}
    
    	case AFNES, AFNED:
    		// Replace FNE[SD] with FEQ[SD] and NOT.
    		if p.To.Type != obj.TYPE_REG {
    			p.Ctxt.Diag("%v needs an integer register output", p)
    			return nil
    		}
    		if ins.as == AFNES {
    			ins.as = AFEQS
    		} else {
    			ins.as = AFEQD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top