Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for GC_ERROR (0.08 sec)

  1. test/fixedbugs/issue6889.go

    	f89 = f88 * 89
    	f90 = f89 * 90
    	f91 = f90 * 91
    	f92 = f91 * 92
    	f93 = f92 * 93
    	f94 = f93 * 94
    	f95 = f94 * 95
    	f96 = f95 * 96
    	f97 = f96 * 97
    	f98 = f97 * 98
    	f99 = f98 * 99 // GC_ERROR "overflow"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue7746.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    const (
    	c0   = 1 << 100
    	c1   = c0 * c0
    	c2   = c1 * c1
    	c3   = c2 * c2 // GC_ERROR "overflow"
    	c4   = c3 * c3
    	c5   = c4 * c4
    	c6   = c5 * c5
    	c7   = c6 * c6
    	c8   = c7 * c7
    	c9   = c8 * c8
    	c10  = c9 * c9
    	c11  = c10 * c10
    	c12  = c11 * c11
    	c13  = c12 * c12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  3. test/fixedbugs/bug385_64.go

    // license that can be found in the LICENSE file.
    
    // Issue 2444
    // Issue 4666: issue with arrays of exactly 4GB.
    
    package main
    
    var z [10 << 20]byte
    
    func main() { // GC_ERROR "stack frame too large"
    	// seq 1 206 | sed 's/.*/	var x& [10<<20]byte/'
    	// seq 1 206 | sed 's/.*/	z = x&/'
    	var x1 [10<<20]byte
    	var x2 [10<<20]byte
    	var x3 [10<<20]byte
    	var x4 [10<<20]byte
    	var x5 [10<<20]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top