Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 271 for GCCGO (0.02 sec)

  1. test/fixedbugs/issue30862.go

    // license that can be found in the LICENSE file.
    
    // Test case for issue 30862.  This test as written will
    // fail for the main 'gc' compiler unless GOEXPERIMENT=fieldtrack
    // is set when building it, whereas gccgo has field tracking
    // enabled by default (hence the build tag below).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 26 18:43:12 UTC 2021
    - 450 bytes
    - Viewed (0)
  2. test/fixedbugs/bug505.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 with a failed conversion to the
    // alias type when constructing the composite literal.
    
    package p
    
    type I interface{ M() }
    type A = I
    type S struct {
    	f A
    }
    
    func F(i I) S {
    	return S{f: i}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 22:52:53 UTC 2017
    - 401 bytes
    - Viewed (0)
  3. test/fixedbugs/issue33013.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 33013: gccgo compiler error with inlinable function
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 10 18:26:53 UTC 2019
    - 253 bytes
    - Viewed (0)
  4. test/fixedbugs/bug480.go

    // compiledir
    
    // Copyright 2013 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 mishandled an import of a forward declared type.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 250 bytes
    - Viewed (0)
  5. test/fixedbugs/bug422.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 file.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 01:52:05 UTC 2012
    - 240 bytes
    - Viewed (0)
  6. test/fixedbugs/issue35739.go

    // compiledir
    
    // 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.
    
    // Issue 35739: gccgo inlining error with constant with method.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 22:50:26 UTC 2020
    - 256 bytes
    - Viewed (0)
  7. test/fixedbugs/bug509.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 a couple of alias cases.
    
    package p
    
    type S struct{}
    
    func (*S) M() {}
    
    type I interface {
    	M()
    }
    
    type A = *S
    
    var V1 I
    var _ = V1.(*S)
    var _ = V1.(A)
    
    func F() {
    	var v I
    	v = (*S)(nil)
    	v = A(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 15 01:42:57 UTC 2020
    - 401 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top