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(
257
257
│ Immortal, Small ║ 1 │ASCII│ 1 │ 0 │
258
258
├─────────────────────╫─────┼─────┼─────┼─────┤
259
259
│ Immortal, Large ║ 1 │ 0 │ 0 │ 0 │
260
+ ├─────────────────────╫─────┼─────┼─────┼─────┤
261
+ │ Immortal, Bridged ║ 1 │ 1 │ 0 │ 0 │
260
262
╞═════════════════════╬═════╪═════╪═════╪═════╡
261
263
│ Native ║ 0 │ 0 │ 0 │ 0 │
262
264
├─────────────────────╫─────┼─────┼─────┼─────┤
@@ -373,7 +375,7 @@ static bool makeStringGutsSummary(
373
375
if ((discriminator & 0b0111'0000 ) == 0 )
374
376
return error (" unexpected discriminator" );
375
377
376
- if ((discriminator & 0b1110 '0000 ) == 0b0100'0000 ) { // 010xxxxx : Bridged
378
+ if ((discriminator & 0b0110 '0000 ) == 0b0100'0000 ) { // x10xxxxx : Bridged
377
379
TypeSystemClangSP clang_ts_sp =
378
380
ScratchTypeSystemClang::GetForTarget (process->GetTarget ());
379
381
if (!clang_ts_sp)
You can’t perform that action at this time.
0 commit comments