Skip to content

Commit fc782d5

Browse files
committed
add noinline for newinliner
Change-Id: I4105f949b41c8443a1b11c5590a84a4ecfbbd2a3
1 parent 92b33c0 commit fc782d5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/devirtualization.go

+2
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@ func deferNoDevirt() {
408408
a.A()
409409
}
410410

411+
//go:noinline
411412
func closureDevirt() {
412413
var a A
413414
func() { // ERROR "func literal does not escape"
@@ -419,6 +420,7 @@ func closureDevirt() {
419420
a.A() // ERROR "devirtualizing" "inlining call"
420421
}
421422

423+
//go:noinline
422424
func closureNoDevirt() {
423425
var a A
424426
func() { // ERROR "func literal does not escape"

0 commit comments

Comments
 (0)