Commits

Joe Groff committed ab099229666
Runtime/IRGen: Replace the _SwiftNativeNS*Base +load hack with a compiler hack. Rather than swizzle the superclass of these bridging classes at +load time, have the compiler set their ObjC runtime base classes, using a "@_swift_native_objc_runtime_base" attribute that tells the compiler to use a different implicit base class from SwiftObject. This lets the runtime shed its last lingering +loads, and should overall be more robust, since it doesn't rely on static initialization order or deprecated ObjC runtime calls. Swift SVN r28219