Commits

Michael Gottesman committed 02cb9bed865
[devirt] Disable devirt of inherited protocol conformances for Seed 5. Devirtualization of inherited protocol conformances are not essential for stdlib performance since in most cases the stdlib does not use class types (in contrast to devirtualization of specialized protocol conformances which /is/ essential). So for Seed 5 I am disabling this for the reasons below: We are not upcasting metatypes correctly and while debugging that I ran into a case where in the protocol witness we had generic types as if the protocol witness was potentially covariant in all arguments. This caused the devirtualizer to subtitute in the witness type as appropriate, but due to the covariant argument the devirtualizer did not perform an upcast causing a verifier fail. <rdar://problem/17823711> Swift SVN r20612