Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 271 for GCCGO (0.03 sec)

  1. test/fixedbugs/gcc61258.go

    // run
    
    // 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.
    
    // PR61258: gccgo crashed when deleting a zero-sized key from a map.
    
    package main
    
    func main() {
    	delete(make(map[[0]bool]int), [0]bool{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 310 bytes
    - Viewed (0)
  2. test/fixedbugs/issue22305.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.
    
    // Issue 22305: gccgo failed to compile this file.
    
    package main
    
    var F func() [0]func()
    var i = 2
    var B = F()[i]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 03:37:20 UTC 2018
    - 302 bytes
    - Viewed (0)
  3. test/fixedbugs/bug479.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.
    
    // Gccgo was not consistent in deciding how to compare a struct type
    // for equality, leading to an undefined symbol at link time.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 319 bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    }
    
    // gccgoToSymbol converts a name to a mangled symbol for gccgo.
    func gccgoToSymbol(ppath string) string {
    	if gccgoMangler == nil {
    		var err error
    		cmd := os.Getenv("GCCGO")
    		if cmd == "" {
    			cmd, err = exec.LookPath("gccgo")
    			if err != nil {
    				fatalf("unable to locate gccgo: %v", err)
    			}
    		}
    		gccgoMangler, err = pkgpath.ToSymbolFunc(cmd, *objDir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. test/fixedbugs/bug404.dir/two.go

    // 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.
    
    // The gccgo compiler would fail on the import statement.
    // two.go:10:13: error: use of undefined type ‘one.T2’
    
    package two
    
    import "./one"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 320 bytes
    - Viewed (0)
  6. test/fixedbugs/issue23489.go

    // run
    
    // 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.
    
    // Caused gccgo to issue a spurious compilation error.
    
    package main
    
    type T struct{}
    
    func (*T) Foo() {}
    
    type P = *T
    
    func main() {
    	var p P
    	p.Foo()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 20:13:22 UTC 2018
    - 322 bytes
    - Viewed (0)
  7. test/fixedbugs/bug430.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.
    
    package main
    
    type S struct {
    	f [2][]int
    }
    
    func F() (r [2][]int) {
    	return
    }
    
    func main() {
    	var a []S
    	a[0].f = F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 30 15:42:21 UTC 2012
    - 327 bytes
    - Viewed (0)
  8. test/fixedbugs/gcc78763.go

    // compile
    
    // Copyright 2016 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 crashed while compiling this code.
    // https://gcc.gnu.org/PR78763.
    
    package p
    
    import "unsafe"
    
    func F() int {
    	if unsafe.Sizeof(0) == 8 {
    		return 8
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 15 22:42:33 UTC 2016
    - 359 bytes
    - Viewed (0)
  9. test/fixedbugs/bug486.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.
    
    // The gccgo lexer had a bug handling nested comments.
    // http://gcc.gnu.org/PR61746
    // http://code.google.com/p/gofrontend/issues/detail?id=35
    
    package main
    
    /*// comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 347 bytes
    - Viewed (0)
  10. test/fixedbugs/bug490.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.
    
    // The gccgo compiler used to crash building a comparison between an
    // interface and an empty struct literal.
    
    package p
     
    type S struct{}
    
    func F(v interface{}) bool {
    	return v == S{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 361 bytes
    - Viewed (0)
Back to top