Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 271 for GCCGO (0.02 sec)

  1. test/fixedbugs/issue40252.go

    // rundir
    
    // 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 got an undefined symbol reference when inlining a method expression.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 15 00:23:28 UTC 2020
    - 265 bytes
    - Viewed (0)
  2. test/fixedbugs/issue8079.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.
    
    // Issue 8079: gccgo crashes when compiling interface with blank type name.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 13 19:33:45 UTC 2014
    - 279 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cache_vet.txt

    env GO111MODULE=off
    
    [short] skip
    [GODEBUG:gocacheverify=1] skip
    [compiler:gccgo] skip  # gccgo has no standard packages
    
    # Start with a clean build cache:
    # test failures may be masked if the cache has just the right entries already.
    env GOCACHE=$WORK/cache
    
    # Run 'go vet os/user' once to warm up the cache.
    go vet os/user
    
    # Check that second vet reuses cgo-derived inputs.
    # The first command could be build instead of vet,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 721 bytes
    - Viewed (0)
  4. test/README.md

    The tool chain and runtime also have regular Go tests in their packages.
    The main reasons to add a new test to this directory are:
    
    * it is most naturally expressed using the test runner; or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 17:18:08 UTC 2023
    - 731 bytes
    - Viewed (0)
  5. test/fixedbugs/gcc61264.go

    // 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.
    
    // PR61264: IncDec statements involving composite literals caused in ICE in gccgo.
    
    package main
    
    func main() {
            map[int]int{}[0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 313 bytes
    - Viewed (0)
  6. test/fixedbugs/issue23870.go

    // compile
    
    // Copyright 2022 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
    
    var F func() [0]struct{
    	A int
    }
    
    var i int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 03:32:27 UTC 2022
    - 265 bytes
    - Viewed (0)
  7. test/fixedbugs/issue6789.go

    // rundir
    
    // 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.
    
    // Issue 6789: gccgo failed to find the hash function for an
    // unexported struct embedded in an exported struct.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 10 18:47:30 UTC 2013
    - 302 bytes
    - Viewed (0)
  8. test/fixedbugs/issue23868.go

    // compile
    
    // Copyright 2022 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
    
    var F func([0]int) int
    var G func() [0]int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 03:32:04 UTC 2022
    - 274 bytes
    - Viewed (0)
  9. test/fixedbugs/bug471.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.
    
    // Caused an internal compiler error in gccgo.
    
    package p
    
    type C chan struct{}
    
    func (c C) F() {
    	select {
    	case c <- struct{}{}:
    	default:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 318 bytes
    - Viewed (0)
  10. test/fixedbugs/bug438.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 used to incorrectly give an error when compiling this.
    
    package p
    
    func F() (i int) {
    	for first := true; first; first = false {
    		i++
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 04 20:14:09 UTC 2012
    - 329 bytes
    - Viewed (0)
Back to top