Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 143 for GCCGO (0.03 sec)

  1. src/cmd/go/go_test.go

    	// so the test should not have been rerun.
    	tg.grepStderr(`([\\/]compile|gccgo).*t2_test.go`, "did not recompile t2")
    	tg.grepStderr(`([\\/]link|gccgo).*t2\.test`, "did not relink t2_test")
    	// This check does not currently work with gccgo, as garbage
    	// collection of unused variables is not turned on by default.
    	if runtime.Compiler != "gccgo" {
    		tg.grepStdout(`ok  \tt/t2\t\(cached\)`, "did not cache t/t2")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. test/fixedbugs/gcc101994.go

    // compile
    
    // 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.
    
    // https://gcc.gnu.org/PR101994
    // gccgo compiler crash with zero-sized result.
    
    package p
    
    type Empty struct{}
    
    func F() (int, Empty) {
    	return 0, Empty{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 25 03:13:06 UTC 2021
    - 330 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_link_x_import_path_escape.txt

    [compiler:gccgo] skip 'gccgo does not support -ldflags -X'
    
    go build -o linkx$GOEXE -ldflags -X=my.pkg.Text=linkXworked my.pkg/main
    exec ./linkx$GOEXE
    stderr '^linkXworked$'
    
    -- go.mod --
    module my.pkg
    
    go 1.16
    -- main/main.go --
    package main
    
    import "my.pkg"
    
    func main() {
    	println(pkg.Text)
    }
    -- pkg.go --
    package pkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 341 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go

    // 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.
    
    //go:build gccgo
    
    package cpu
    
    func getisar0() uint64 { return 0 }
    func getisar1() uint64 { return 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 299 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_unsupported_goos.txt

    [compiler:gccgo] skip # gccgo assumes cross-compilation is always possible
    
    env GOOS=windwos # intentional misspelling of windows
    
    ! go build -n exclude
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 18:25:35 UTC 2023
    - 191 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_tags_no_comma.txt

    [compiler:gccgo] skip 'gccgo has no standard packages'
    go build -tags 'tag1 tag2' math
    ! go build -tags 'tag1,tag2 tag3' math
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 170 bytes
    - Viewed (0)
  7. src/net/http/pprof/pprof_test.go

    	atomic.AddUint32(&Sink, 1)
    	for time.Since(start) < dt {
    		// When using gccgo the loop of mutex operations is
    		// not preemptible. This can cause the loop to block a GC,
    		// causing the time limits in TestDeltaContentionz to fail.
    		// Since this loop is not very realistic, when using
    		// gccgo add preemption points 100 times a second.
    		t1 := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_cgo.txt

    [short] skip
    [!cgo] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    
    # Test coverage on cgo code.
    
    go test -short -cover cgocover
    stdout  'coverage:.*[1-9][0-9.]+%'
    ! stderr '[^0-9]0\.0%'
    
    -- go.mod --
    module cgocover
    
    go 1.16
    -- p.go --
    package p
    
    /*
    void
    f(void)
    {
    }
    */
    import "C"
    
    var b bool
    
    func F() {
    	if b {
    		for {
    		}
    	}
    	C.f()
    }
    -- p_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 423 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_dot_import.txt

    [short] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    
    go test -coverpkg=coverdot/a,coverdot/b coverdot/b
    ! stderr '[^0-9]0\.0%'
    ! stdout '[^0-9]0\.0%'
    
    -- go.mod --
    module coverdot
    
    go 1.16
    -- a/a.go --
    package a
    
    func F() {}
    -- b/b.go --
    package b
    
    import . "coverdot/a"
    
    func G() { F() }
    -- b/b_test.go --
    package b
    
    import "testing"
    
    func TestG(t *testing.T) {
    	G()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 379 bytes
    - Viewed (0)
  10. src/cmd/dist/util_gccgo.go

    // Copyright 2015 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.
    
    //go:build gccgo
    
    package main
    
    func useVFPv1() {}
    
    func useVFPv3() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 252 bytes
    - Viewed (0)
Back to top