Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for Add1 (0.03 sec)

  1. test/live.go

    	t := &ret
    	printnl() // ERROR "live at call to printnl: ret$"
    	// Note: ret is live at the printnl because the compiler moves &ret
    	// from before the printnl to after.
    	useT40(t)
    }
    
    func ddd1(x, y *int) { // ERROR "live at entry to ddd1: x y$"
    	ddd2(x, y) // ERROR "stack object .autotmp_[0-9]+ \[2\]\*int$"
    	printnl()
    	// Note: no .?autotmp live at printnl.  See issue 16996.
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. test/live_regabi.go

    	t := &ret
    	printnl() // ERROR "live at call to printnl: ret$"
    	// Note: ret is live at the printnl because the compiler moves &ret
    	// from before the printnl to after.
    	useT40(t)
    }
    
    func ddd1(x, y *int) { // ERROR "live at entry to ddd1: x y$"
    	ddd2(x, y) // ERROR "stack object .autotmp_[0-9]+ \[2\]\*int$"
    	printnl()
    	// Note: no .?autotmp live at printnl.  See issue 16996.
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top