File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
lldb/source/Plugins/Language/Swift Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,8 @@ static bool makeStringGutsSummary(
257257 │ Immortal, Small ║ 1 │ASCII│ 1 │ 0 │
258258 ├─────────────────────╫─────┼─────┼─────┼─────┤
259259 │ Immortal, Large ║ 1 │ 0 │ 0 │ 0 │
260+ ├─────────────────────╫─────┼─────┼─────┼─────┤
261+ │ Immortal, Bridged ║ 1 │ 1 │ 0 │ 0 │
260262 ╞═════════════════════╬═════╪═════╪═════╪═════╡
261263 │ Native ║ 0 │ 0 │ 0 │ 0 │
262264 ├─────────────────────╫─────┼─────┼─────┼─────┤
@@ -373,7 +375,7 @@ static bool makeStringGutsSummary(
373375 if ((discriminator & 0b0111'0000 ) == 0 )
374376 return error (" unexpected discriminator" );
375377
376- if ((discriminator & 0b1110 '0000 ) == 0b0100'0000 ) { // 010xxxxx : Bridged
378+ if ((discriminator & 0b0110 '0000 ) == 0b0100'0000 ) { // x10xxxxx : Bridged
377379 TypeSystemClangSP clang_ts_sp =
378380 ScratchTypeSystemClang::GetForTarget (process->GetTarget ());
379381 if (!clang_ts_sp)
You can’t perform that action at this time.
0 commit comments