Commits

Slava Pestov committed a6f81779d1e
SILGen: Fix crash when protocol defines instance and static property with same name Mangler::mangleEntity() correctly handles accessors these days, so by calling mangleAccessorEntity() from SILGenConformance, we were just skipping the 'Z' modifier if the accessor was static... As a result, generating a conformance to such a protocol tried to emit duplicate SIL functions. Fixes <rdar://problem/21426579>. Swift SVN r29601