Commits

Doug Gregor committed 18f9420bcb7
Stop generating definitions for the imported initializing constructors. When we import an Objective-C init method into Swift as a constructor, the Clang importer currently synthesizes both a +alloc call (used by the allocating constructor) and a body that forwards to the corresponding init method. Eliminate the body and stop emitting an initializing constructor at all: instead, the allocating constructor will invoke the init method through objc_msgSend. Swift SVN r8420