Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 271 for GCCGO (0.05 sec)

  1. 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)
  2. test/fixedbugs/issue33013.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 33013: gccgo compiler error with inlinable function
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 10 18:26:53 UTC 2019
    - 253 bytes
    - Viewed (0)
  3. test/fixedbugs/bug480.go

    // compiledir
    
    // 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 mishandled an import of a forward declared type.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 250 bytes
    - Viewed (0)
  4. test/fixedbugs/bug422.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 file.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 01:52:05 UTC 2012
    - 240 bytes
    - Viewed (0)
  5. test/fixedbugs/issue35739.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.
    
    // Issue 35739: gccgo inlining error with constant with method.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 22:50:26 UTC 2020
    - 256 bytes
    - Viewed (0)
  6. test/fixedbugs/issue30862.go

    // license that can be found in the LICENSE file.
    
    // Test case for issue 30862.  This test as written will
    // fail for the main 'gc' compiler unless GOEXPERIMENT=fieldtrack
    // is set when building it, whereas gccgo has field tracking
    // enabled by default (hence the build tag below).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 26 18:43:12 UTC 2021
    - 450 bytes
    - Viewed (0)
  7. test/fixedbugs/bug505.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.
    
    // gccgo crashed compiling this file with a failed conversion to the
    // alias type when constructing the composite literal.
    
    package p
    
    type I interface{ M() }
    type A = I
    type S struct {
    	f A
    }
    
    func F(i I) S {
    	return S{f: i}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 22:52:53 UTC 2017
    - 401 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_gcflags.txt

    env GO111MODULE=off
    
    # Test that the user can override default code generation flags.
    
    [compiler:gccgo] skip  # gccgo does not use -gcflags
    [!cgo] skip
    [!GOOS:linux] skip  # test only works if c-archive implies -shared
    [short] skip
    
    env GOCACHE=$WORK/gocache  # Looking for compile commands, so need a clean cache.
    go build -x -n -buildmode=c-archive -gcflags=all=-shared=false ./override.go
    stderr '^.*/compile (.* )?-shared (.* )?-shared=false'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 541 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go

    // Copyright 2018 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 linux && gccgo && arm
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
    	var newoffset int64
    	offsetLow := uint32(offset & 0xffffffff)
    	offsetHigh := uint32((offset >> 32) & 0xffffffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 596 bytes
    - Viewed (0)
  10. test/fixedbugs/bug497.go

    // run
    
    // 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.
    
    // Gccgo used to miscompile passing a global variable with a
    // zero-sized type to a function.
    
    package main
    
    type T struct {
    	field s
    }
    
    type s struct{}
    
    var X T
    
    func F(_ T, c interface{}) int {
    	return len(c.(string))
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 00:03:45 UTC 2015
    - 452 bytes
    - Viewed (0)
Back to top