Commits

Arnold Schwaighofer committed 9c77c056965
stdlib: Call a private specialized version in String.init The print abi changed so that there is no longer a way to print one item to a stream without going through a vararg array. We call the print function in a String initializer (e.g for string interpolation) incurring unnecessary overhead. Use an internal specialized version of print instead. rdar://22133281 Swift SVN r31000