File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
lldb/source/Plugins/Language/Swift Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ DictionaryConfig::DictionaryConfig()
45
45
// still used to name classes in the ObjC runtime.
46
46
47
47
m_nativeStorageRoot_mangled =
48
- ConstString (" _TtCs22__RawDictionaryStorage " );
48
+ ConstString (" $ss22__RawDictionaryStorageCD " );
49
49
m_nativeStorageRoot_demangled =
50
50
ConstString (" Swift.__RawDictionaryStorage" );
51
51
Original file line number Diff line number Diff line change @@ -303,10 +303,8 @@ HashedCollectionConfig::StorageObjectAtAddress(
303
303
auto scratch_ctx = reader->get ();
304
304
if (!scratch_ctx)
305
305
return nullptr ;
306
- SwiftASTContext *ast_ctx = scratch_ctx->GetSwiftASTContext ();
307
-
308
306
CompilerType rawStorage_type =
309
- ast_ctx ->GetTypeFromMangledTypename (m_nativeStorageRoot_mangled);
307
+ scratch_ctx ->GetTypeFromMangledTypename (m_nativeStorageRoot_mangled);
310
308
if (!rawStorage_type.IsValid ())
311
309
return nullptr ;
312
310
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ SetConfig::SetConfig()
46
46
// still used to name classes in the ObjC runtime.
47
47
48
48
m_nativeStorageRoot_mangled =
49
- ConstString (" _TtCs15__RawSetStorage " );
49
+ ConstString (" $ss15__RawSetStorageCD " );
50
50
m_nativeStorageRoot_demangled =
51
51
ConstString (" Swift.__RawSetStorage" );
52
52
You can’t perform that action at this time.
0 commit comments