Skip to content

Commit a957ba9

Browse files
committed
simplify
Change-Id: I5f1523f505b050ad46bac22938527550a2610622
1 parent 2560a2c commit a957ba9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/cmd/compile/internal/devirtualize/devirtualize.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -362,9 +362,7 @@ func analyzeAssignments(n ir.Node, analyzed map[*ir.Name]*types.Type) *types.Typ
362362
}
363363
if call, ok := rhs.(*ir.CallExpr); ok {
364364
retTyp := call.Fun.Type().Results()[i].Type
365-
if !retTyp.IsInterface() {
366-
return handleType(ir.OAS2FUNC, n.Pos(), retTyp)
367-
}
365+
return handleType(ir.OAS2FUNC, n.Pos(), retTyp)
368366
}
369367
typ = nil
370368
return true

0 commit comments

Comments
 (0)