Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for mishandled (0.52 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		if r0iszero != 0 /*TypeKind(100016)*/ && p.To.Reg == 0 {
    			c.ctxt.Diag("literal operation on R0\n%v", p)
    		}
    		if int32(int16(v)) != v {
    			log.Fatalf("mishandled instruction %v", p)
    		}
    		o1 = AOP_IRR(c.opirr(p.As), uint32(p.To.Reg), uint32(r), uint32(v))
    
    	case 5: /* syscall */
    		o1 = c.oprrr(p.As)
    
    	case 6: /* logical op Rb,[Rs,]Ra; no literal */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. test/fixedbugs/bug508.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 composite literals of map with type bool.
    
    package p
    
    var M = map[bool]uint8{
    	false: 0,
    	true: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 10 18:42:07 UTC 2020
    - 293 bytes
    - Viewed (0)
  3. test/fixedbugs/issue40152.go

    // run
    
    // 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 converting an untyped boolean to an interface type.
    
    package main
    
    func t(args ...interface{}) bool {
            x := true
            return x == args[0]
    }
    
    func main() {
    	r := t("x" == "x" && "y" == "y")
    	if !r {
    		panic(r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 15 01:43:18 UTC 2020
    - 412 bytes
    - Viewed (0)
  4. 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)
  5. test/fixedbugs/bug517.go

    // run
    
    // Copyright 2023 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 gofrontend used to mishandle this code due to a pass ordering issue.
    // It was inconsistent as to whether unsafe.Sizeof(byte(0)) was a constant,
    // and therefore as to whether it was a direct-iface type.
    
    package main
    
    import "unsafe"
    
    type A [unsafe.Sizeof(byte(0))]*byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 20 03:00:06 UTC 2023
    - 703 bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/list.go

    	for _, item := range list.Items {
    		item := item.(*Item)
    		if len(item.Blocks) == 0 {
    			// Goldmark mishandles what follows; see testdata/extra.txt 111.md.
    			return true
    		}
    		switch item.Blocks[0].(type) {
    		case *List, *ThematicBreak, *CodeBlock:
    			// Goldmark mishandles a list with various block items inside it.
    			return true
    		}
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/runtime/signal_darwin_amd64.go

    		// The hardware delivers a different kind of fault for a malformed address
    		// than it does for an attempt to access a valid but unmapped address.
    		// OS X 10.9.2 mishandles the malformed address case, making it look like
    		// a user-generated signal (like someone ran kill -SEGV ourpid).
    		// We pass user-generated signals to os/signal, or else ignore them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/code.go

    	var n int
    	if t := s; t.trimFence(&fence, &info, &n) && strings.HasPrefix(fence, c.fence) && info == "" {
    		return line{}, false
    	}
    	if !s.trimSpace(c.n, c.n, false) {
    		p.corner = true // goldmark mishandles fenced blank lines with not enough spaces
    		s.trimSpace(0, c.n, false)
    	}
    	c.text = append(c.text, s.string())
    	p.corner = p.corner || s.nl != '\n' // goldmark does not normalize to \n
    	return line{}, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

                            println("This expectation for the request [${request.method} :${request.pathInfo}] was already handled - skipping")
                            return
                        }
                        if (!baseRequest.isHandled()) {
                            expectation.atomicRun.set(true)
                            action.handle(request, response)
                            baseRequest.setHandled(true)
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

                            return
                        }
                        if (!((Request) request).isHandled()) {
                            expectation.atomicRun.set(true)
                            action.handle(request, response)
                            ((Request) request).setHandled(true)
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top