You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some non-swift symbols can unintentionally cause `isSwiftSymbol` to return true. Any symbol starting with `_T` is considered a swift symbol because "old-style" mangling used this prefix.
Prevent this by special casing `_T`-prefixed symbols. The only kind of old-style mangled that lldb should expect to see are ObjC class and protocol names. Classes use a `_TtC` or `_TtGC` prefix (the latter is for generics). Protocols are `_TtP`.
0 commit comments