mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
In many cases these calls are constructors that were too big to be inlined.
We now devirtualize this code:
class ABC {
init() { /* Don't inline */ }
func member() { }
}
func foo() {
var x = ABC()
x.member()
}
Swift SVN r12223
13 KiB
13 KiB