Commits

Anna Zaks committed e64247b0b3b
Insert implicit calls to super.init Insert calls to super.init at the end of the class initializers that don't reference any other initializers but have parents. The check for initializer eligibility, expression construction, and typechecking are done on the AST level. However, we insert the call inside the epilog block at SILGen to ensure that constructors with early returns are handled properly. Addresses radar://13108250. Swift SVN r11444