Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 271 for GCCGO (0.03 sec)

  1. test/fixedbugs/issue4734.go

    // compile
    
    // 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.
    
    // Caused gccgo to emit multiple definitions of the same symbol.
    
    package p
    
    type S1 struct{}
    
    func (s *S1) M() {}
    
    type S2 struct {
    	F struct{ *S1 }
    }
    
    func F() {
    	_ = struct{ *S1 }{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 359 bytes
    - Viewed (0)
  2. test/fixedbugs/bug417.go

    // compile
    
    // Copyright 2009 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.
    
    // Some indirect uses of types crashed gccgo, because it assumed that
    // the size of the type was known before it had been computed.
    
    package p
    
    type S1 struct {
    	p *[1]S3
    	s [][1]S3
    	m map[int][1]S3
    	c chan [1]S3
    	i interface { f([1]S3) [1]S3 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 674 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue8828.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.
    
    //go:build cgo
    
    // Issue 8828: compiling a file with -compiler=gccgo fails if a .c file
    // has the same name as compiled directory.
    
    package cgotest
    
    import "cmd/cgo/internal/test/issue8828"
    
    func p() {
    	issue8828.Bar()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 382 bytes
    - Viewed (0)
  4. test/fixedbugs/issue10407.go

    // runoutput
    
    // 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 10407: gccgo failed to remove carriage returns
    // from raw string literals.
    
    package main
    
    import "fmt"
    
    func main() {
    	fmt.Println("package main\nfunc main() { if `a\rb\r\nc` != \"ab\\nc\" { panic(42) }}")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 392 bytes
    - Viewed (0)
  5. test/fixedbugs/issue32347.go

    // compile
    
    // 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 32347: gccgo compiler crashes with int-to-string conversion
    // with large integer constant operand.
    
    package p
    
    const (
    	X1 = string(128049)
    	X2 = string(-1)
    	X3 = string(1<<48)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:57:27 UTC 2019
    - 390 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.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 && linux && amd64
    
    package unix
    
    import "syscall"
    
    //extern gettimeofday
    func realGettimeofday(*Timeval, *byte) int32
    
    func gettimeofday(tv *Timeval) (err syscall.Errno) {
    	r := realGettimeofday(tv, nil)
    	if r < 0 {
    		return syscall.GetErrno()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 436 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_internal.txt

    cd ../testinternal2
    env GO111MODULE=off
    ! go build -v .
    stderr 'p\.go:3:8: use of internal package .*internal/w not allowed'
    env GO111MODULE=''
    
    [compiler:gccgo] skip # gccgo does not have GOROOT
    cd ../testinternal
    ! go build -v .
    stderr 'p\.go:3:8: use of internal package net/http/internal not allowed'
    
    -- testinternal/go.mod --
    module testinternal
    
    go 1.16
    -- testinternal/p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. test/fixedbugs/bug481.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Returning an index into a conversion from string to slice caused a
    // compilation error when using gccgo.
    
    package p
    
    func F1(s string) byte {
    	return []byte(s)[0]
    }
    
    func F2(s string) rune {
    	return []rune(s)[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 390 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c

    // 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 (386 || amd64 || amd64p32) && gccgo
    
    #include <cpuid.h>
    #include <stdint.h>
    #include <x86intrin.h>
    
    // Need to wrap __get_cpuid_count because it's declared as static.
    int
    gccgoGetCpuidCount(uint32_t leaf, uint32_t subleaf,
                       uint32_t *eax, uint32_t *ebx,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. test/fixedbugs/gcc67968.go

    // compiledir
    
    // 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.
    
    // https://gcc.gnu.org/PR67968
    
    // gccgo compiler crash building the equality and hash functions for a
    // type when a return statement requires a conversion to interface
    // type of a call of function defined in a different package that
    // returns an unnamed type.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Nov 01 21:17:01 UTC 2015
    - 456 bytes
    - Viewed (0)
Back to top