Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 271 for GCCGO (0.03 sec)

  1. test/fixedbugs/issue28601.go

    // compile
    
    // Copyright 2018 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.
    
    // Failed to compile with gccgo.
    
    package p
    
    import "unsafe"
    
    const w int = int(unsafe.Sizeof(0))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 05 20:54:58 UTC 2018
    - 285 bytes
    - Viewed (0)
  2. test/fixedbugs/bug403.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.
    
    // Crashed gccgo.
    
    package p
    
    type S struct {
    	f interface{}
    }
    
    func F(p *S) bool {
    	v := p.f
    	switch a := v.(type) {
    	case nil:
    		_ = a
    		return true
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 341 bytes
    - Viewed (0)
  3. test/fixedbugs/issue20923.go

    // compile
    
    // Copyright 2018 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 20923: gccgo failed to compile parenthesized select case expressions.
    
    package p
    
    func F(c chan bool) {
    	select {
    	case (<-c):
    	case _ = (<-c):
    	case _, _ = (<-c):
    	case (c) <- true:
    	default:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 20:13:07 UTC 2018
    - 379 bytes
    - Viewed (0)
  4. test/fixedbugs/bug503.go

    // compile
    
    // Copyright 2017 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 file, due to failing to correctly emit
    // the type descriptor for a named alias.
    
    package p
    
    type entry = struct {
    	a, b, c int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 11 06:03:39 UTC 2017
    - 347 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. test/fixedbugs/bug478.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Using the same unexported name for a method as a method on an
    // imported embedded type caused a gccgo compilation failure.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 319 bytes
    - Viewed (0)
  9. 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)
  10. test/fixedbugs/gcc89321.go

    // compile
    
    // 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.
    
    // https://gcc.gnu.org/PR89321
    // gccgo compiler crash building map literals with a zero-sized value type.
    
    package p
    
    type M map[byte]struct{}
    
    var (
    	M1 = M{1: {}, 2: {}, 3: {}}
    	M2 = M{1: {}, 2: {}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 26 23:02:54 UTC 2019
    - 376 bytes
    - Viewed (0)
Back to top