Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 271 for GCCGO (0.03 sec)

  1. 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)
  2. test/fixedbugs/issue40152.go

    // run
    
    // 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 converting an untyped boolean to an interface type.
    
    package main
    
    func t(args ...interface{}) bool {
            x := true
            return x == args[0]
    }
    
    func main() {
    	r := t("x" == "x" && "y" == "y")
    	if !r {
    		panic(r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 15 01:43:18 UTC 2020
    - 412 bytes
    - Viewed (0)
  3. test/fixedbugs/bug488.go

    // errorcheckdir
    
    // 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.
    
    // The gccgo compiler had a bug: if one file in a package did a dot
    // import, then an earlier file in the package would incorrectly
    // resolve to the imported names rather than reporting undefined
    // errors.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 404 bytes
    - Viewed (0)
  4. 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)
  5. test/fixedbugs/gcc61273.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.
    
    // PR61273: gccgo failed to compile a SendStmt in the PostStmt of a ForClause
    // that involved predefined constants.
    
    package main
    
    func main() {
    	c := make(chan bool, 1)
    	for ; false; c <- false {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 375 bytes
    - Viewed (0)
  6. test/fixedbugs/issue32778.go

    // source code is governed by a BSD-style license that can be found in
    // the LICENSE file.
    
    // This directory contains a pair of packages that triggers a compiler
    // crash in gccgo (problem with tracking indirectly referenced
    // packages during exporting). See issue 32778 for details.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 02 16:34:55 UTC 2019
    - 386 bytes
    - Viewed (0)
  7. test/fixedbugs/issue10284.go

    // compile
    
    // 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.
    
    // Issue 10284: gccgo failed to allow converting a user-defined
    // type whose underlying type is uintptr to unsafe.Pointer.
    
    package p
    
    import "unsafe"
    
    type T uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 385 bytes
    - Viewed (0)
  8. test/fixedbugs/issue33219.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 33219: gccgo assert in "implements_interface()"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 23 12:39:03 UTC 2019
    - 249 bytes
    - Viewed (0)
  9. 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)
  10. test/fixedbugs/bug492.go

    // rundir
    
    // 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.
    
    // Test case that gccgo failed to link.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 22 23:07:10 UTC 2014
    - 228 bytes
    - Viewed (0)
Back to top