Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for markRelocs (0.22 sec)

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

    		return ASW
    	case AMOVF:
    		return AFSW
    	case AMOVD:
    		return AFSD
    	default:
    		panic(fmt.Sprintf("%+v is not a MOV", mnemonic))
    	}
    }
    
    // markRelocs marks an obj.Prog that specifies a MOV pseudo-instruction and
    // requires relocation.
    func markRelocs(p *obj.Prog) {
    	switch p.As {
    	case AMOV, AMOVB, AMOVH, AMOVW, AMOVBU, AMOVHU, AMOVWU, AMOVF, AMOVD:
    		switch {
    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