Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hubba (0.02 sec)

  1. src/cmd/covdata/testdata/prog2.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"os"
    	"prog/dep"
    )
    
    //go:noinline
    func fifth() {
    	println("hubba")
    }
    
    //go:noinline
    func sixth() {
    	println("wha?")
    }
    
    func main() {
    	println(dep.Dep1())
    	if len(os.Args) > 1 {
    		fifth()
    	} else {
    		sixth()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 396 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    	// presence of break with label should pessimize this func
    	// (similar to goto).
    	panic("bad")
    lab1:
    	for {
    		println("blah")
    		if x < 0 {
    			break lab1
    		}
    		panic("hubba")
    	}
    }
    
    // funcflags.go T_callsexit 268 0 1
    // Flags FuncPropNeverReturns
    // ParamFlags
    //   0 ParamFeedsIfOrSwitch
    // <endpropsdump>
    // {"Flags":1,"ParamFlags":[32],"ResultFlags":null}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top