Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 271 for GCCGO (0.03 sec)

  1. test/fixedbugs/gcc61255.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.
    
    // PR61255: gccgo failed to compile IncDec statements on variadic functions.
    
    package main
    
    func main() {
    	append([]byte{}, 0)[0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 306 bytes
    - Viewed (0)
  2. test/fixedbugs/bug507.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.
    
    // Gccgo mishandled a combination of normal import and dot import.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 22 04:31:41 UTC 2020
    - 259 bytes
    - Viewed (0)
  3. test/fixedbugs/bug420.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.
    
    // Issue 1757.
    // gccgo failed to compile this.
    
    package main
    
    func main() {
         (_) = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 01:52:05 UTC 2012
    - 264 bytes
    - Viewed (0)
  4. test/fixedbugs/bug426.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 p
    
    type T *T
    
    func f(t T) {
    	println(t, *t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 01 05:51:21 UTC 2012
    - 260 bytes
    - Viewed (0)
  5. test/fixedbugs/gcc101994.go

    // compile
    
    // 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.
    
    // https://gcc.gnu.org/PR101994
    // gccgo compiler crash with zero-sized result.
    
    package p
    
    type Empty struct{}
    
    func F() (int, Empty) {
    	return 0, Empty{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 25 03:13:06 UTC 2021
    - 330 bytes
    - Viewed (0)
  6. test/fixedbugs/issue36085.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 36085: gccgo compiler did not generate type descriptor
    // for pointer to type alias defined in another package, causing
    // linking error.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 11 19:48:39 UTC 2019
    - 339 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go

    // 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.
    
    //go:build gccgo
    
    package cpu
    
    func getisar0() uint64 { return 0 }
    func getisar1() uint64 { return 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 299 bytes
    - Viewed (0)
  8. test/fixedbugs/bug493.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.
    
    // Test case that gccgo failed to compile.
    
    package p
    
    func F() []string {
    	return []string{""}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 17 02:22:57 UTC 2014
    - 291 bytes
    - Viewed (0)
  9. test/fixedbugs/bug504.go

    // compiledir
    
    // 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 mishandled a reference to a type alias in a package that was
    // not directly imported.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 19:02:09 UTC 2017
    - 288 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_link_x_import_path_escape.txt

    [compiler:gccgo] skip 'gccgo does not support -ldflags -X'
    
    go build -o linkx$GOEXE -ldflags -X=my.pkg.Text=linkXworked my.pkg/main
    exec ./linkx$GOEXE
    stderr '^linkXworked$'
    
    -- go.mod --
    module my.pkg
    
    go 1.16
    -- main/main.go --
    package main
    
    import "my.pkg"
    
    func main() {
    	println(pkg.Text)
    }
    -- pkg.go --
    package pkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 341 bytes
    - Viewed (0)
Back to top