Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for assemble64 (0.19 sec)

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

    			// when OpenBSD 7.5 is released and 7.3 is no longer supported.
    			argv = append(argv, "-Wl,-z,nobtcfi")
    		}
    		if ctxt.Arch.InFamily(sys.ARM64) {
    			// Disable execute-only on openbsd/arm64 - the Go arm64 assembler
    			// currently stores constants in the text section rather than in rodata.
    			// See issue #59615.
    			argv = append(argv, "-Wl,--no-execute-only")
    		}
    	case objabi.Hwindows:
    		if windowsgui {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	"unsigned long long":     "ulonglong", // Used by Clang 14; issue 53013.
    }
    
    const signedDelta = 64
    
    // String returns the current type representation. Format arguments
    // are assembled within this method so that any changes in mutable
    // values are taken into account.
    func (tr *TypeRepr) String() string {
    	if len(tr.Repr) == 0 {
    		return ""
    	}
    	if len(tr.FormatArgs) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top