Lines Matching refs:xx
20 func f1(q *Q, xx []byte) interface{} { // ERROR "live at call to newobject: xx$" "live at call to writebarrierptr: &xx$" "live at entry to f1: xx$"
21 // xx was copied from the stack to the heap on the previous line:
22 // xx was live for the first two prints but then it switched to &xx
23 // being live. We should not see plain xx again.
25 global = &xx // ERROR "live at call to writebarrierptr: &xx$"
27 xx, _, err := f2(xx, 5) // ERROR "live at call to f2: &xx$" "live at call to writebarrierptr: err.data err.type$"