Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for move (1.22 sec)

  1. src/cmd/compile/internal/ssa/config.go

    }
    
    type Logger interface {
    	// Logf logs a message from the compiler.
    	Logf(string, ...interface{})
    
    	// Log reports whether logging is not a no-op
    	// some logging calls account for more than a few heap allocations.
    	Log() bool
    
    	// Fatalf reports a compiler error and exits.
    	Fatalf(pos src.XPos, msg string, args ...interface{})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/config.go

    		*mode = BuildModePIE
    	case "c-archive":
    		*mode = BuildModeCArchive
    	case "c-shared":
    		*mode = BuildModeCShared
    	case "shared":
    		*mode = BuildModeShared
    	case "plugin":
    		*mode = BuildModePlugin
    	}
    
    	if !platform.BuildModeSupported("gc", s, buildcfg.GOOS, buildcfg.GOARCH) {
    		return fmt.Errorf("buildmode %s not supported on %s/%s", s, buildcfg.GOOS, buildcfg.GOARCH)
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top