Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 271 for GCCGO (0.31 sec)

  1. test/fixedbugs/bug512.go

    // run
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo did not make a copy of a value receiver when using a
    // goroutine to call a method.
    
    package main
    
    import (
    	"sync"
    	"sync/atomic"
    )
    
    var wg sync.WaitGroup
    
    type S struct {
    	i1, i2 int32
    }
    
    var done int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 17 19:15:18 UTC 2021
    - 793 bytes
    - Viewed (0)
  2. test/fixedbugs/issue16016.go

    	switch v := vals[0].(type) {
    	case string:
    		_ = v
    	}
    }
    
    type R struct{ *T }
    
    type Q interface {
    	Foo([]interface{})
    }
    
    func main() {
    	var count = 10000
    	if runtime.Compiler == "gccgo" {
    		// On targets without split-stack libgo allocates
    		// a large stack for each goroutine. On 32-bit
    		// systems this test can run out of memory.
    		const intSize = 32 << (^uint(0) >> 63) // 32 or 64
    		if intSize < 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:39:06 UTC 2024
    - 877 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_cache_trimpath.txt

    env GO111MODULE=on
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    cd $WORK
    go build -o a.out
    
    # Varying -trimpath should cause a rebuild.
    go build -x -o a.out -trimpath
    stderr '(compile|gccgo)( |\.exe)'
    stderr 'link( |\.exe)'
    
    # Two distinct versions of the same module with identical content should
    # still be cached separately.
    # Verifies golang.org/issue/35412.
    go get example.com/stack@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 865 bytes
    - Viewed (0)
  4. src/internal/cfg/cfg.go

    	CGO_CXXFLAGS
    	CGO_CXXFLAGS_ALLOW
    	CGO_CXXFLAGS_DISALLOW
    	CGO_ENABLED
    	CGO_FFLAGS
    	CGO_FFLAGS_ALLOW
    	CGO_FFLAGS_DISALLOW
    	CGO_LDFLAGS
    	CGO_LDFLAGS_ALLOW
    	CGO_LDFLAGS_DISALLOW
    	CXX
    	FC
    	GCCGO
    	GO111MODULE
    	GO386
    	GOAMD64
    	GOARCH
    	GOARM
    	GOARM64
    	GOBIN
    	GOCACHE
    	GOCACHEPROG
    	GOENV
    	GOEXE
    	GOEXPERIMENT
    	GOFLAGS
    	GOGCCFLAGS
    	GOHOSTARCH
    	GOHOSTOS
    	GOINSECURE
    	GOMIPS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/go/build/doc.go

    //
    // If DIR is a directory listed in the Go path, a package with
    // source in DIR/src/foo/bar can be imported as "foo/bar" and
    // has its compiled form installed to "DIR/pkg/GOOS_GOARCH/foo/bar.a"
    // (or, for gccgo, "DIR/pkg/gccgo/foo/libbar.a").
    //
    // The bin/ directory holds compiled commands.
    // Each command is named for its source directory, but only
    // using the final element, not the entire path. That is, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go

    // the dependency between them. (See golang.org/issue/32102)
    // Moreover, this file will be used during the building of
    // gccgo's libgo and thus must not used a CGo method.
    
    //go:build aix && gccgo
    
    package cpu
    
    import (
    	"syscall"
    )
    
    //extern getsystemcfg
    func gccgoGetsystemcfg(label uint32) (r uint64)
    
    func callgetsystemcfg(label int) (r1 uintptr, e1 syscall.Errno) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 726 bytes
    - Viewed (0)
  7. test/fixedbugs/issue4618.go

    func main() {
    	nf := testing.AllocsPerRun(100, F)
    	ng := testing.AllocsPerRun(100, G)
    	if int(nf) > 1 {
    		fmt.Printf("AllocsPerRun(100, F) = %v, want 1\n", nf)
    		os.Exit(1)
    	}
    	if int(ng) != 0 && (runtime.Compiler != "gccgo" || int(ng) != 1) {
    		fmt.Printf("AllocsPerRun(100, G) = %v, want 0\n", ng)
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 652 bytes
    - Viewed (0)
  8. test/fixedbugs/issue34577.go

    // compiledir
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 34577: gccgo compiler error emitting export data
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 17:26:20 UTC 2019
    - 250 bytes
    - Viewed (0)
  9. test/fixedbugs/bug500.go

    // run
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo generated incorrect GC info when a global variable was
    // initialized to a slice of a value containing pointers.  The initial
    // backing array for the slice was allocated in the .data section,
    // which is fine, but the backing array was not registered as a GC
    // root.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 21:29:37 UTC 2016
    - 694 bytes
    - Viewed (0)
  10. test/fixedbugs/bug432.go

    // compile
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gccgo crashed compiling this.
    
    package p
    
    var v struct{ I }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 30 15:42:21 UTC 2012
    - 255 bytes
    - Viewed (0)
Back to top