Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 271 for GCCGO (0.06 sec)

  1. test/fixedbugs/issue32901.go

    // rundir
    
    // 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 32901: type descriptor equality bug in gccgo.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 03 14:12:22 UTC 2019
    - 243 bytes
    - Viewed (0)
  2. test/fixedbugs/issue33020.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 33020: gccgo undefined behavior with inlinable function
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 18 11:34:23 UTC 2019
    - 257 bytes
    - Viewed (0)
  3. test/fixedbugs/issue34503.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 34503: gccgo compiler error importing inlinable function
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 25 18:10:57 UTC 2019
    - 258 bytes
    - Viewed (0)
  4. test/fixedbugs/issue33158.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 33158: gccgo duplicate def error from importing inlinable function
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 18 17:24:59 UTC 2019
    - 268 bytes
    - Viewed (0)
  5. test/fixedbugs/issue33739.go

    // rundir
    
    // 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 33739: gccgo undefined symbol with cross-package inlining
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 28 18:35:32 UTC 2019
    - 255 bytes
    - Viewed (0)
  6. test/fixedbugs/bug511.go

    // compiledir
    
    // 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 mishandled type aliases as receiver types.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 25 15:24:25 UTC 2021
    - 244 bytes
    - Viewed (0)
  7. test/fixedbugs/issue33866.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 33866: assert in gccgo during compilation
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 06 12:11:17 UTC 2019
    - 243 bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/testdata/script/cover_cgo_xtest.txt

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

    // run
    
    // 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.
    
    // Test using _ receiver.  Failed with gccgo.
    
    package main
    
    type S struct {}
    
    func (_ S) F(i int) int {
    	return i
    }
    
    func main() {
    	s := S{}
    	const c = 123
    	i := s.F(c)
    	if i != c {
    		panic(i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:50:37 UTC 2012
    - 367 bytes
    - Viewed (0)
Back to top