Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for autotmpImplicit (0.18 sec)

  1. test/live_uintptrkeepalive.go

    //go:uintptrkeepalive
    //go:nosplit
    func explicit(uintptr) {
    }
    
    func autotmpImplicit() { // ERROR "can inline autotmpImplicit"
    	var t int
    	implicit(uintptr(unsafe.Pointer(&t))) // ERROR "live at call to implicit: .?autotmp" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
    }
    
    func autotmpExplicit() { // ERROR "can inline autotmpExplicit"
    	var t int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top