Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 271 for GCCGO (0.05 sec)

  1. src/cmd/go/testdata/script/cover_runs.txt

    [compiler:gccgo] skip 'gccgo has no cover tool'
    [short] skip
    
    go test -short -coverpkg=strings strings regexp
    ! stdout '[^0-9]0\.0%'
    stdout  'strings.*coverage:.*[1-9][0-9.]+%'
    stdout  'regexp.*coverage:.*[1-9][0-9.]+%'
    
    go test -short -cover strings math regexp
    ! stdout '[^0-9]0\.0%'
    stdout  'strings.*coverage:.*[1-9][0-9.]+%'
    stdout  'math.*coverage:.*[1-9][0-9.]+%'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 413 bytes
    - Viewed (0)
  2. test/fixedbugs/gcc61254.go

    // compile
    
    // Copyright 2014 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.
    
    // PR61254: gccgo failed to compile a slice expression with missing indices.
    
    package main
    
    func main() {
    	[][]int{}[:][0][0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 302 bytes
    - Viewed (0)
  3. test/fixedbugs/bug419.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.
    
    // Issue 1811.
    // gccgo failed to compile this.
    
    package p
    
    type E interface{}
    
    type I interface {
    	E
    	E
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 01:52:05 UTC 2012
    - 279 bytes
    - Viewed (0)
  4. test/fixedbugs/bug506.go

    // rundir
    
    // 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.
    
    // Gccgo caused an undefined symbol reference building hash functions
    // for an imported struct with unexported fields.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 18 04:57:41 UTC 2018
    - 308 bytes
    - Viewed (0)
  5. test/fixedbugs/gcc61244.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // PR61244: Type descriptors expressions were not traversed, causing an ICE
    // in gccgo when producing the backend representation.
    // This is a reduction of a program reported by GoSmith.
    
    package main
    
    const a = 0
    
    func main() {
    	switch i := (interface{})(a); i.(type) {
    	case [0]string:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 466 bytes
    - Viewed (0)
  6. test/fixedbugs/bug476.go

    // license that can be found in the LICENSE file.
    
    // Logical operation on named boolean type returns the same type,
    // supporting an implicit conversion to an interface type.  This used
    // to crash gccgo.
    
    package p
    
    type B bool
    
    func (b B) M() {}
    
    type I interface {
    	M()
    }
    
    func F(a, b B) I {
    	return a && b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 434 bytes
    - Viewed (0)
  7. test/fixedbugs/bug304.go

    // compile
    
    // Copyright 2010 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.
    
    // Caused a gccgo crash on compilation.
    // bug304.go: In function ‘p.f’:
    // bug304.go:15:2: internal compiler error: in copy_tree_r, at tree-inline.c:4114
    
    package p
    type S struct {
    	v interface{}
    }
    func g(e interface{}) { }
    func f(s S) {
    	g(s.v.(*int))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 432 bytes
    - Viewed (0)
  8. test/fixedbugs/bug508.go

    // compile
    
    // Copyright 2020 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 mishandles composite literals of map with type bool.
    
    package p
    
    var M = map[bool]uint8{
    	false: 0,
    	true: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 10 18:42:07 UTC 2020
    - 293 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testshared/shared_test.go

    }
    
    // If gccgo is not available or not new enough, call t.Skip.
    func requireGccgo(t *testing.T) {
    	t.Helper()
    
    	if runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" {
    		t.Skip("gccgo test skipped on PPC64 until issue #60798 is resolved")
    	}
    
    	gccgoName := os.Getenv("GCCGO")
    	if gccgoName == "" {
    		gccgoName = "gccgo"
    	}
    	gccgoPath, err := exec.LookPath(gccgoName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  10. src/go/internal/gccgoimporter/testdata/escapeinfo.go

    // Test case for escape info in export data. To compile and extract .gox file:
    // gccgo -fgo-optimize-allocs -c escapeinfo.go
    // objcopy -j .go_export escapeinfo.o escapeinfo.gox
    
    package escapeinfo
    
    type T struct{ data []byte }
    
    func NewT(data []byte) *T {
    	return &T{data}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 19:41:25 UTC 2018
    - 306 bytes
    - Viewed (0)
Back to top