Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for elfMipsAbiFlags (0.53 sec)

  1. src/cmd/link/internal/ld/elf.go

    	MIPS_FPABI_FPXX = 5
    	// FP code in the module uses the FP64  ABI
    	MIPS_FPABI_FP64 = 6
    	// FP code in the module uses the FP64A ABI
    	MIPS_FPABI_FP64A = 7
    )
    
    func elfMipsAbiFlags(sh *ElfShdr, startva uint64, resoff uint64) int {
    	n := 24
    	sh.Addr = startva + resoff - uint64(n)
    	sh.Off = resoff - uint64(n)
    	sh.Size = uint64(n)
    	sh.Type = uint32(elf.SHT_MIPS_ABIFLAGS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top